‎2007 Oct 24 11:30 AM
Hi, Everybody i want to learn RFC .
I don't know abt RFC .
can anybody tell me how to do RFC programming.
i want step by -step by coding part abt RFC programming
if anybody having PRINT-SCREEN of RFC programming then plz give me or mail me
mail id : sandeepjadhav.info@gmail.com
byeeeeeeeeee ,
‎2007 Oct 24 11:32 AM
‎2007 Oct 24 11:33 AM
Remote Function Call:
RFC is an SAP interface protocol. Based on CPI-C, it considerably simplifies the programming of communication processes between systems.
RFCs enable you to call and execute predefined functions in a remote system - or even in the same system.
RFCs manage the communication process, parameter transfer and error handling.
Have a look at this link.
http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE2/BCFESDE2.pdf
http://help.sap.com/saphelp_47x200/helpdata/en/22/042860488911d189490000e829fbbd/frameset.htm.
Remote Function Call (RFC) is the standard SAP interface for communication between SAP systems.
A remote function call (RFC) is the call of a function module that runs in a different system to the calling program. Although it is also possible to call a function module in the same system as an RFC, normally RFCs are used when the caller and the called function module run in the same system.
--> Each ABAP program can call a remote function module using the command CALL FUNCTION...DESTINATION.
The parameter DESTINATION informs the SAP system that the called function module runs in a different system to the calling system. RFC communication with the remote system takes place as a part of the CALL FUNCTION command.
--> RFC function modules in an SAP system must be proper function modules and must be registered in the SAP system as remote.
Check the following link for further help:
http://help.sap.com/saphelp_erp2005vp/helpdata/en/22/042a3e488911d189490000e829fbbd/frameset.htm
‎2007 Oct 24 11:34 AM
‎2007 Oct 25 7:06 AM