‎2008 Jun 11 3:06 PM
Hi Forum,
I m a functional consultant need some help on technical side.
Is their any way I can make the function module remotely called?
I have checked for the RFC option in SE37 execute and I m not getting RFC target system option.
If there is any way to call the function module remotely apart from the above mentioned way, then pls guide me.
Points will be rewarded immediately to the valuable answers.
Thanks and regards,
Sheetal Hirde
‎2008 Jun 11 3:09 PM
The function module must be marked as "remote enabled" in the attributes section of SE37.
Greetings
Thomas
‎2008 Jun 11 3:09 PM
The function module must be marked as "remote enabled" in the attributes section of SE37.
Greetings
Thomas
‎2008 Jun 11 3:09 PM
Hi Sheetal,
YOu cannot change a normal Function module to RFC Enabled if it is a standard one.
The best you can do is to create a WRAPPER RFC function module which calls the normal function module inside it.
How to create a function module?
http://help.sap.com/saphelp_nw04/helpdata/en/26/64f623fa8911d386e70000e82011b8/content.htm
Creating an RFC Function module is all the same but for the option RFC Enabled in the place of normal function module.
Regards,
Ravi Kanth Talagana
‎2008 Jun 11 3:14 PM
The function module should be marked as the 'Remote enabled' function module and must be present in the target system.
Now use the following syntax to call this remote enabled function module from the source system.
Call Function f_name DESTINATION 'T90CLNT090'
The Destination name is tha logical system name of the target system.
‎2008 Jun 11 3:30 PM
You can noy directly execute RFC in Remote Server.
You must have a program in which this is called.
Mark the Function Module as "Remote -Enable" in the Attribute Tab of FM.
Call the FM from Program as
call <fm name> destination <rfc destination created in SM59>
exporting...
importing...
‎2008 Jun 13 9:03 AM