BAPI_BUPA_CENTRAL_SAVEREPLICA is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name BAPI_BUPA_CENTRAL_SAVEREPLICA into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
BUBA_3
Released Date:
Not Released
Processing type: Remote-Enabled
CALL FUNCTION 'BAPI_BUPA_CENTRAL_SAVEREPLICA' "SAP BP: ALE, Replicating Central Data
EXPORTING
businesspartner = " bapibus1006_head-bpartner Business Partner Number
businesspartnerpartner_guid = " bapibus1006_partnerguid-partner_guid Business Partner GUID
* partnercategory = " bapibus1006_head-partn_cat Business Partner Category
* partnergroup = " bapibus1006_head-partn_grp Business Partner Grouping
* centraldata = " bapibus1006_central SAP BP: BAPI Structure for Central Data
* centraldataperson = " bapibus1006_central_person SAP BP: BAPI Structure for Personal Data
* centraldataorganization = " bapibus1006_central_organ SAP BP: BAPI Structure for Organization Data
* centraldatagroup = " bapibus1006_central_group SAP BP: BAPI Structure for Group Data
* centraldata_x = " bapibus1006_central_x SAP BP: BAPI Structure for Central Data, Update Bar
* centraldataperson_x = " bapibus1006_central_pers_x SAP BP: BAPI Structure for Personal Data, Update Bar
* centraldataorganization_x = " bapibus1006_central_org_x SAP BP: BAPI Structure for Organization Data, Update Bar
* centraldatagroup_x = " bapibus1006_central_grp_x SAP BP: BAPI Structure for Group Data, Update Bar
* TABLES
* return = " bapiret2 Return Parameter
. " BAPI_BUPA_CENTRAL_SAVEREPLICA
The ABAP code below is a full code listing to execute function module BAPI_BUPA_CENTRAL_SAVEREPLICA including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).
| it_return | TYPE STANDARD TABLE OF BAPIRET2,"TABLES PARAM |
| wa_return | LIKE LINE OF it_return . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_businesspartner | TYPE BAPIBUS1006_HEAD-BPARTNER , |
| it_return | TYPE STANDARD TABLE OF BAPIRET2 , |
| wa_return | LIKE LINE OF it_return, |
| ld_businesspartnerpartner_guid | TYPE BAPIBUS1006_PARTNERGUID-PARTNER_GUID , |
| ld_partnercategory | TYPE BAPIBUS1006_HEAD-PARTN_CAT , |
| ld_partnergroup | TYPE BAPIBUS1006_HEAD-PARTN_GRP , |
| ld_centraldata | TYPE BAPIBUS1006_CENTRAL , |
| ld_centraldataperson | TYPE BAPIBUS1006_CENTRAL_PERSON , |
| ld_centraldataorganization | TYPE BAPIBUS1006_CENTRAL_ORGAN , |
| ld_centraldatagroup | TYPE BAPIBUS1006_CENTRAL_GROUP , |
| ld_centraldata_x | TYPE BAPIBUS1006_CENTRAL_X , |
| ld_centraldataperson_x | TYPE BAPIBUS1006_CENTRAL_PERS_X , |
| ld_centraldataorganization_x | TYPE BAPIBUS1006_CENTRAL_ORG_X , |
| ld_centraldatagroup_x | TYPE BAPIBUS1006_CENTRAL_GRP_X . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name BAPI_BUPA_CENTRAL_SAVEREPLICA or its description.
BAPI_BUPA_CENTRAL_SAVEREPLICA - SAP BP: ALE, Replicating Central Data BAPI_BUPA_CENTRAL_MAINT_PERIOD - BAPI_BUPA_CENTRAL_GETLIST - BAPI_BUPA_CENTRAL_GETDETAIL - SAP BP, BAPI: Read Central Data BAPI_BUPA_CENTRAL_CHANGE - SAP BP, BAPI: Change Central Data BAPI_BUPA_BBP0060_GETDETAIL - Sales Data for a Business Partner and Sales Area