我想通過SAP連接器3.0在MVC3應用程序上從SAP獲取數據。SAP連接器3.0在表結構上的.NET設置值
連接沒有問題。
我的問題是,當我嘗試從一個表的結構中設置的值,它說
「TABLE [STRUCTURE ZHRS_ABSENCES]:不能設定值(陣列中存儲元件的值是空)」
我的代碼如下:
//create function
IRfcFunction function = conex.Repository
.CreateFunction("Z_HR_PORTAL_GET_EMPLOYEE_DATA");
//get table from function
IRfcTable absenceHoli = function.GetTable("P_ABSENCES");
//setting value to structure
absenceHoli.SetValue(0, "0000483"); //this is where the error occurs
感謝您的鏈接,它幫助我 – jose