I tired to make use BAPI in VS.net with SAP .NET Connector 2.0
but when I created table class ,how can I insert value to that table.
Dim proxy As New SAPProxy1(cs)
' create a sap table variable
Dim tblCust As New BAPICUSTOMER_ADDRESSDATATable
Dim tblcust1 As New BAPICUSTOMER_SPECIALDATATable
Dim return1 As New BAPIRETURN1
Dim irange As New BAPICUSTOMER_IDRANGETable
' call the RFM method on the proxy
' If I want to insert some values to tblCust,How can I do?
proxy.Bapi_Customer_Getlist("1", 10, return1, tblCust, irange, tblcust1)
If I want to do the same in C#,how can I do?