0
最近我正在研究一個需要從SAP表中獲取數據到MICROSOFT SQL表的項目,我已經完成了連接部分,並且還將SAP結構值拉入了ASP.NET。如何將SAP結構中的數據保存到MICROSOFT SQL表中?
我的問題是如何將結構保存到Sql表中?
這是我的代碼;
RfcDestination mydestination = RfcDestinationManager.GetDestination("rfcecp");
RfcRepository myrepository = mydestination.Repository;
IRfcFunction EHSIMSFM = myrepository.CreateFunction("ZEHSIMS");
EHSIMSFM.Invoke(mydestination);
IRfcTable positable = EHSIMSFM.GetTable("POSITIONTAB1");
if (positable.RowCount > 0)"THIS IS THE SAP STRUCTURE WITH ROW COUNT '300'."
{
posid.Text = "working";
}
else
{
posid.Text = "notworking";
}
}
catch (Exception ej)
{
posid.Text = ej.Message;
}
非常感謝。你能幫助我如何讓這段代碼在後臺運行嗎? – user2536023
@ user2536023在這裏有很好的話題在stackoverflow。你可以按照這個例子http://stackoverflow.com/questions/177488/c-sharp-threading – Jan