‎2010 Feb 07 5:48 AM
Hi
I created a new RFC enabled function module by copying an SAP function module in SE37.
The function module is RFC_READ_TABLE.
I modified it but cannot execute it as I will need the function module in the target server.
Is there anyway for me to execute the fn module without copying or moving it to the target server.
‎2010 Feb 07 6:04 AM
No way without modifying
If you want to get the data from target system then your MODIFIED rfc should be there in the target system.
a®
‎2010 Feb 07 6:04 AM
No way without modifying
If you want to get the data from target system then your MODIFIED rfc should be there in the target system.
a®
‎2010 Feb 07 10:25 AM
Hello,
That's correct, you need the modified function module in the target system.
As an alternative you may have a look at function module RFC_ABAP_INSTALL_AND_RUN
With this function module you can pass ABAP code (program) via RFC to a targett system and execute it there.
The function module contains a table called WRITES which contains the actual report of the program after it has run in the target system.
This table WRITES can be used in the source system to capture the result in the target system.
I hope this helps.
Wim
‎2010 Feb 07 12:23 PM