‎2007 Dec 07 7:30 AM
Hi,
I have a remote enabled function module in 4.7. I am using this is a program written in 5.0. How to get the data from RFC enabled FM into an internal table in this case?
‎2007 Dec 07 7:32 AM
‎2007 Dec 07 7:36 AM
‎2007 Dec 07 7:41 AM
Hi Prabhu,
Since it is a Custom Fm i cant see it in my system.
Look if u want to bring data in internal table then there could be two ways::
1) your FM should contain itab in CHANGING option , so that u can have internal table of same type and pass through FM,
2) read values one by one and append to internal table.
Thanks
Rohit G
‎2007 Dec 07 11:18 AM
Hi,
Create the itab with the structure as that of Table structure given in the RFM.
Call the RFM into your progam. Accept the records one by one into the itab.
thansk