cancel
Showing results for 
Search instead for 
Did you mean: 

RFC Vs BAPI

Former Member
0 Kudos

Can anyone please list out as what are the differences between RFC & BAPI

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Hari,

Technically, not much at all. They are both remote enabled functions that can be accessed from outside of SAP (to be more technically correct, from outside of the ABAP stack).

From a usage/functional perspective however, BAPIs are a little bit more special from RFCs.

Bapis:

- are designed as the methods of business objects in the business object repository (accessable using transaction BAPI or SWO1)

- have non-technical parameter names (the technical field names in SAP are mapped)

- have a fixed interface and functionality across all SAP releases (this is probably the key point as it means you can develop integrations with them which do not need to be changed when you upgrade)

Generally, if you are trying to find a function for a particular requirement you should look for a BAPI first, then for a RFC function which has a released status (check the function attributes in SE37), and then just a normal RFC last.

The benefit of an RFC function with released status means that it also has a fixed interface which will not change with new SAP releases.

Hope that helps.

Cheers,

SGR

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi

Find the clarification try this link

<a href="http://www.sap-img.com/abap/interview-question-on-bapi-rfc-abap-objects-tables.htm">http://www.sap-img.com/abap/interview-question-on-bapi-rfc-abap-objects-tables.htm</a>