Hi,
I'm using Connector Framework to execute FM to retrieve some data from R/3 system.
I set all the input parameters and result of the execution is ... IRecordSet object.
now i like to display column name, and value from that object.
Can anyone explain how can i do that?
i tried this way but doesn't work for me ?
for(int j = 0; ((IRecordSet)result).next(); j++){
response.write(((IRecordSet)result).getColumnName(j) + "<br>");
}
Thanks
MMK