SAP ISU_BUPA_MWX_MAP Function Module for Update of SD Customer in Proxy BAPI









ISU_BUPA_MWX_MAP is a standard isu bupa mwx map SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Update of SD Customer in Proxy BAPI processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for isu bupa mwx map FM, simply by entering the name ISU_BUPA_MWX_MAP into the relevant SAP transaction such as SE37 or SE38.

Function Group: ECUST_BAPI
Program Name: SAPLECUST_BAPI
Main Program: SAPLECUST_BAPI
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ISU_BUPA_MWX_MAP pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'ISU_BUPA_MWX_MAP'"Update of SD Customer in Proxy BAPI
EXPORTING
X_MUSTER_KUN = "Reference for creating a standard customer for bus. partner
X_PARTNER = "Business Partner Number
X_TYPE = "Business Partner Category
X_NEW = "Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
X_BU_EXT = "CBP: Read general data plus standard address
* X_BU_EXT_OLD = "CBP: Read general data plus standard address
* X_BP_STRUCT = "Com. Interface of a Business Partner

TABLES
* IT_CONTAINER = "Container for Business Agreement: Contract Account Interface
* IT_BUT0ID = "Business Partners: Identification Numbers
* IT_BANK = "BP: Bank details (Read)
* IT_BANK_OLD = "BP: Bank details (Read)
* IT_TAX = "Tax Numbers for Business Partner
* IT_TAX_OLD = "Tax Numbers for Business Partner
* IT_ROLES_NEW = "SAP BP: BAPI Structure for BP Roles
* IT_ROLES_OLD = "SAP BP: BAPI Structure for BP Roles
* ET_RETURN = "Return Parameter(s)
* IT_BUT0IS = "GP: Industries
.



IMPORTING Parameters details for ISU_BUPA_MWX_MAP

X_MUSTER_KUN - Reference for creating a standard customer for bus. partner

Data type: MUSTER_KUN
Optional: No
Call by Reference: Yes

X_PARTNER - Business Partner Number

Data type: BU_PARTNER
Optional: No
Call by Reference: Yes

X_TYPE - Business Partner Category

Data type: BU_TYPE
Optional: No
Call by Reference: Yes

X_NEW - Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')

Data type: BOOLE-BOOLE
Optional: No
Call by Reference: Yes

X_BU_EXT - CBP: Read general data plus standard address

Data type: BUS000_EXT
Optional: No
Call by Reference: Yes

X_BU_EXT_OLD - CBP: Read general data plus standard address

Data type: BUS000_EXT
Optional: Yes
Call by Reference: Yes

X_BP_STRUCT - Com. Interface of a Business Partner

Data type: BUS_EI_COM_EXTERN
Optional: Yes
Call by Reference: Yes

TABLES Parameters details for ISU_BUPA_MWX_MAP

IT_CONTAINER - Container for Business Agreement: Contract Account Interface

Data type: FKK_CONTAINER
Optional: Yes
Call by Reference: Yes

IT_BUT0ID - Business Partners: Identification Numbers

Data type: BUT0ID
Optional: Yes
Call by Reference: Yes

IT_BANK - BP: Bank details (Read)

Data type: BUS0BK
Optional: Yes
Call by Reference: Yes

IT_BANK_OLD - BP: Bank details (Read)

Data type: BUS0BK
Optional: Yes
Call by Reference: Yes

IT_TAX - Tax Numbers for Business Partner

Data type: DFKKBPTAXNUM
Optional: Yes
Call by Reference: Yes

IT_TAX_OLD - Tax Numbers for Business Partner

Data type: DFKKBPTAXNUM
Optional: Yes
Call by Reference: Yes

IT_ROLES_NEW - SAP BP: BAPI Structure for BP Roles

Data type: BAPIBUS1006_ROLES
Optional: Yes
Call by Reference: Yes

IT_ROLES_OLD - SAP BP: BAPI Structure for BP Roles

Data type: BAPIBUS1006_ROLES
Optional: Yes
Call by Reference: Yes

ET_RETURN - Return Parameter(s)

Data type: BAPIRET2
Optional: Yes
Call by Reference: Yes

IT_BUT0IS - GP: Industries

Data type: BUT0IS
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for ISU_BUPA_MWX_MAP Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.

DATA:
lt_it_container  TYPE STANDARD TABLE OF FKK_CONTAINER, "   
lv_x_muster_kun  TYPE MUSTER_KUN, "   
lt_it_but0id  TYPE STANDARD TABLE OF BUT0ID, "   
lt_it_bank  TYPE STANDARD TABLE OF BUS0BK, "   
lv_x_partner  TYPE BU_PARTNER, "   
lv_x_type  TYPE BU_TYPE, "   
lt_it_bank_old  TYPE STANDARD TABLE OF BUS0BK, "   
lv_x_new  TYPE BOOLE-BOOLE, "   
lt_it_tax  TYPE STANDARD TABLE OF DFKKBPTAXNUM, "   
lv_x_bu_ext  TYPE BUS000_EXT, "   
lt_it_tax_old  TYPE STANDARD TABLE OF DFKKBPTAXNUM, "   
lt_it_roles_new  TYPE STANDARD TABLE OF BAPIBUS1006_ROLES, "   
lv_x_bu_ext_old  TYPE BUS000_EXT, "   
lv_x_bp_struct  TYPE BUS_EI_COM_EXTERN, "   
lt_it_roles_old  TYPE STANDARD TABLE OF BAPIBUS1006_ROLES, "   
lt_et_return  TYPE STANDARD TABLE OF BAPIRET2, "   
lt_it_but0is  TYPE STANDARD TABLE OF BUT0IS. "   

  CALL FUNCTION 'ISU_BUPA_MWX_MAP'  "Update of SD Customer in Proxy BAPI
    EXPORTING
         X_MUSTER_KUN = lv_x_muster_kun
         X_PARTNER = lv_x_partner
         X_TYPE = lv_x_type
         X_NEW = lv_x_new
         X_BU_EXT = lv_x_bu_ext
         X_BU_EXT_OLD = lv_x_bu_ext_old
         X_BP_STRUCT = lv_x_bp_struct
    TABLES
         IT_CONTAINER = lt_it_container
         IT_BUT0ID = lt_it_but0id
         IT_BANK = lt_it_bank
         IT_BANK_OLD = lt_it_bank_old
         IT_TAX = lt_it_tax
         IT_TAX_OLD = lt_it_tax_old
         IT_ROLES_NEW = lt_it_roles_new
         IT_ROLES_OLD = lt_it_roles_old
         ET_RETURN = lt_et_return
         IT_BUT0IS = lt_it_but0is
. " ISU_BUPA_MWX_MAP




ABAP code using 7.40 inline data declarations to call FM ISU_BUPA_MWX_MAP

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
 
 
 
 
 
 
"SELECT single BOOLE FROM BOOLE INTO @DATA(ld_x_new).
 
 
 
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!