Hi,
I am trying to convert a sap table to ado table. I am using rfc and function returns a table. My code is;
...
...
ZBMBSEKTORTable sapSEKTOR = new ZBMBSEKTORTable();
//this table is coming automatically.
sapProxy.Z_RFC_DI_URUNTIPLERI(ref sapSEKTOR);
DataTable dt = new DataTable();
dt = sapSEKTOR.ToADODataTable();
I am getting error while converting sap table to ado table. As I mentioned in header of this topic, I am using .NET 2003 and SAP Connector for .NET 2003. What is the problem? How can I solve this problem?
Thanks.