‎2007 Dec 12 11:08 AM
Hi Gurus,
I need to know whether is it possible to pass an internal table through a RFC....
Regards,
Pramod
‎2007 Dec 12 11:23 AM
create a structure in se11 with the same fields of u r itab.
go to se37....in tables tab specify a itab2 like <structure-name>
after all the process in u r coding append the data to itab2.
‎2007 Dec 12 11:12 AM
Yes. It is best to do it through the TABLES parameter, however, rather than use a table type through IMPORTING/EXPORTING/CHANGING.
matt
‎2007 Dec 12 11:15 AM
Hi pramod,
Yes, It's possible...
check FM BAPI_PO_CHANGE which is RFC enabled.
here we can pass internal tables using TABLES parameter..
‎2007 Dec 12 11:23 AM
create a structure in se11 with the same fields of u r itab.
go to se37....in tables tab specify a itab2 like <structure-name>
after all the process in u r coding append the data to itab2.
‎2007 Dec 12 12:09 PM