Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

About RFC's

Former Member
0 Likes
843

Hi Experts,

I want to know more about RFC's .

How to work on RFC's

Examples on RFC's

Doc's on RFC's

Please let me know all these

Regards

khanna

1 ACCEPTED SOLUTION
Read only

Former Member

Hi Experts,

I want to know more about RFC's .

How to work on RFC's

Examples on RFC's

Doc's on RFC's

Please let me know all these

Regards

khanna

6 REPLIES 6
Read only

h_senden2
Active Contributor
0 Likes
805

Use the SEARCH function. I assume that a lot of postings about RFC's are in this forum already.

regards,

Hans

Read only

Former Member
Read only

Former Member
0 Likes
805

Hi,

there r TRFC(transactional RFC),ARFC(asynchronous RFC),QRFC(queued RFC).

rfc is for getting the data,moving the dta from client to client remotely.

if u give me ur mail id i'll send u some basic examples with screen shots.

regards,

bharat.

Read only

Former Member
0 Likes
805

Hi,

RFC (Remote Function Call) is similar to the general SAP fun module: except that in the attributes you click the radio button: RFC enabled;

and you will be passing an Import parameter DESTINATION to it.

Other code and usage will be similar to any fun module;

Have a look at any fun module in SE37 to understand better about the different components of Fun modules;

reward if useful

regards,

Anji

Read only

Former Member
0 Likes
805

Hi Rajesh,

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.

http://help.sap.com/saphelp_47x200/helpdata/en/22/042860488911d189490000e829fbbd/frameset.htm.

Regards,

Priyanka.

Read only

Former Member
0 Likes
805

Hi ,

<b>RFC:</b>Remote Function Call (RFC) is the standard SAP interface for communication between SAP systems. The RFC calls a function to be executed in a remote system.

<b>Synchronous RFC:</b>

The first version of RFC is synchronous RFC (sRFC). This type of RFC executes the function call based on synchronous communication, which means that the systems involved must both be available at the time the call is made.

<b><b>Transactional RFC (tRFC) and Queued RFC (qRFC</b>).</b> tRFC is used mainly to transfer ALE Intermediate Documents (IDocs).

<b>Transactional RFC:</b>

If an error occurs during a synchronous remote function call, the system cannot tell at what point the error occurred (most crucially, whether the function module was actually processed in R/3 before the operation failed). Restarting a failed call is therefore a dangerous thing to do, since you risk duplicating a completed function call.

To alleviate this problem, you can use transactional RFC, which guarantees that each function call you issue will only be executed once, even if you submit it repeatedly to the R/3 System. The system implements this safeguard by assigning a unique transaction ID (TID) to each transaction that you submit. When you attempt to process the transaction, the system checks whether that TID has already been processed. If it has, the transaction is ignored.

<b>Queued RFC:</b>When you use transactional RFC, you cannot guarantee the order in which the function calls will be processed in the system (it is quite possible that one call might overtake another). For cases where you need to specify a particular processing order, you can use queued RFC, which is an extension of transactional RFC. In qRFC, you place each function call in a logical queue. A function call cannot be executed until all of its predecessors in the queue have been processed. Queued RFC calls are processed asynchronously

For more information on RFC, please go through the link.

http://help.sap.com/saphelp_nw04/helpdata/en/6f/1bd5b6a85b11d6b28500508b5d5211/content.htm

Regards,

Bhanu