I am developing an windows application, here I wanna extract data from sap system and show it in a datagridview... I have extracted the column names alone like name, city and so on..
I don't know how to extract the data from the columns, can anyone help me with the code?
I am using RFC_READ_TABLE function module and rfc destiantion manager
Thanks in advance!!!
untested, but this is essentially how it works:
first create the connection
create the function
set parameters before invoking the function
table parameters are created by retrieving the table from the function, using the Append() function to add a row and using SetValue() to set values for individual columns in that row
call the function
process the data