Skip to main content

YCLASSICAL_JOINING

*&---------------------------------------------------------------------* *& Report  YCLASSICAL_JOINING *& *&---------------------------------------------------------------------* *& *& *&---------------------------------------------------------------------* REPORT   yclassical_joining  NO   STANDARD   PAGE  HEADING                               LINE - SIZE   110                               LINE - COUNT   255                               MESSAGE - ID  z...

Difference Between BAPI and RFC Function Module in SAP

Difference Between BAPI and RFC Function Module in SAP
From this tutorial ,we will learn what is the difference BAPI and RFC in SAP?BAPI and RFC definitions.
IBAPIs are standardized programming interfaces (methods) enabling external applications to access business processes and data in the R/3 System.
BAPIs provide stable and standardized methods to achieve seamless integration between the R/3 System and external applications, legacy systems and add-ons.
BAPIs are defined in the BOR(Business object repository) as methods of SAP business object types that carry out specific business functions.
BAPIs are carried out as RFC-enabled characteristic modules and are created within the Function Builder of the ABAP Workbench.
The most critical difference btwn BAPI and FM is that BAPI can be wrapped in Business objects whereas RFC cant.
The following standardized BAPIs are provided:
Reading times of SAP commercial enterprise objects
GetList ( ) With the BAPI GetList you could select a range of object key values, as an example, organization codes and material numbers.
The BAPI GetList() is a class method.
GetDetail() With the BAPI GetDetail() the details of an example of a enterprise item kind are retrieved and back to the calling software. The instance is identified via its key. The BAPI GetDetail() is an instance approach. BAPIs which could create, trade or delete times of a commercial enterprise object type
The following BAPIs of the equal object type must be programmed so that they can be called several times within one transaction. For example, if, after income order 1 has been created, a 2nd sales order 2 is created inside the same transaction, the second one BAPI name ought to not affect the consistency of the sales order 2. After completing the transaction with a COMMIT WORK, each the orders are saved consistently in the database.
Delete( ) and Undelete( ) The BAPI Delete() deletes an example of an SAP business item type from the database or sets a deletion flag.
The BAPI Undelete() eliminates a deletion flag. These BAPIs are example methods.
Cancel ( ) Unlike the BAPI Delete(), the BAPI Cancel() cancels an example of a enterprise object type. The instance to be cancelled stays in the database and an extra instance is created and that is the only that is sincerely canceled. The Cancel() BAPI is an instance technique.
Create( ) and CreateFromData! ( )
The BAPIs Create() and CreateFromData() create an example of an SAP commercial enterprise object kind, for example, a purchase order. These BAPIs are class techniques.
Change( )
The BAPI Change() adjustments an present instance of an SAP enterprise object kind, for example, a purchase order. The BAPI Change () is an instance approach.
Add<subobject> ( ) and Remove<subobject> ( ) The BAPI Add<subobject> adds a subobject to an existing item inst! Ance and the BAPI and Remove<subobject> removes a subobject from an object instance. These BAPIs are example strategies.
BAPI are RFC enabled characteristic modules. The difference among RFc and BAPI are commercial enterprise objects. You create business items and people are then registered in your BOR (Business Object Repository) which may be accessed outdoor the SAP gadget through the usage of a few other applications (Non-SAP) which include VB or JAVA. In this example u best specify the commercial enterprise item and its approach from external gadget in BAPI there is no direct machine name. While RFC are direct gadget name Some BAPIs provide simple capabilities and may be used for most SAP commercial enterprise object types. These BAPIs need to be applied the equal for all business object sorts. Standardized BAPIs are easier to apply and prevent customers having to deal with a number of exceptional BAPIs. Whenever viable, a standardized BAPI must be used in choice to an character BAPI.
RFC
A remote function call is a call to a function module running in a system different from the caller's. The remote function can also be called from within the same system (as a remote call).
RFC consists of two interfaces : A calling interface for ABAP Programs and a calling interface for Non-SAP programs.
The RFC Interface takes care of :-
- Converting all parameter data to the representation needed in the remote system
Calling the communication routines needed to talk to the remote system.
Handling communications errors, and notifying the caller, if desired ( using EXCEPTIONS paramater of the CALL FUNCTION).
End

Comments

Popular posts from this blog

How to Create SAP ABAP Query Using SQ01 Step by Step Guide

How to Create SAP ABAP Query Using SQ01 Step by Step. You can create ABAP query objects ,if they are not exist in the SAP system. You can create SAP query without  ABAP programming knowledge. ABAP Query provides users with a variety of ways to define and create different types of  reports , such as  Basic Lists ,  Stats , and  Sorted Lists . ABAP query consists of four elements: Queries InfoSets Groups Translation query Queries The query component is used by end users for Queries. You can create queries, change and queries executed. Transaction  SQ01. Trnslation component / QUERY Many texts to define queries, InfoSets and user groups are generated. These texts are displayed in the language we choose to access the SAP system. We can compare the text or languages ​​that use this component. InfoSets InfoSets are the views of the Special Data Sources. An InfoSet Describes the fields of a data source that can be reported in the q...

ALV Field Catalog in SAP ABAP

ALV Field Catalog in SAP ABAP Field Catalog Field catalog is an internal table which is used to pass a list of fields to display in ALV report, we can set different properties to fields that will be display in ALV output. Type Group It is a data dictionary object which contains all the reusable user-defined types. Example for a type group is SLIS, which contains all the user-defined types for developing ALV reports. TYPE-POOLS is a keyword which is used to assign the type-group to a ALV report . Syntax : TYPE-POOLS SLIS . DATA : <IT_FCAT> TYPE SLIS_T_FIELDCAT_ALV . "INTERNAL TABLE FOR FIELD CATALOG DATA : <WA_FCAT> TYPE SLIS_FIELDCAT_ALV . " WORK AREA FOR FIELD CATLOG Field catalog types Field catalog: Field catalog is a format description of the display area. There are three procedures to build a FIELD CATALOG. 1. Automatic field catalog. 2. Semi-automatic field catalog. 3. Manual field catalog. Automatic field catalog. If the list structure has ...

SAP Table Structure T-codes

SAP table structure tcodes E11 - ABAP Dictionary Maintenance Basis - Dictionary Maintenance SE14 - Utilities for Dictionary tables Basis - Activation Program, Conversion Program, DB Utility, MC,  SPDDCU61 - Create table structure Cross Application - Object Dependencies CU63 - Display table structure Cross Application - Object Dependencies CU62 - Change table structure Cross Application - Object Dependencie CU64 - table structure List Cross Application - Object Dependencies LBWE - LO Data Ext.: Customizing Cockpit Logistics - Logistics Information System (LIS)RSA6 - Maintain DataSources Basis - BW Service APIRSO2 - Oltp Metadata Repository Basis - BW Service  APISE84 - Repository Information System Basis - Workbench Tools: Editors, Painters, Modelers SE38 - ABAP Editor Basis - ABAP Editor SE16 - Data Browser Basis - Workbench Utilities SM30 - Call View Maintenance Basis - Table Maintenance Tool SE37 - ABAP Function Modules Basis - Function Builder SE80 - Object N...