SAP COM_BSP_MODIFY_BP Function Module for
COM_BSP_MODIFY_BP is a standard com bsp modify bp SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 com bsp modify bp FM, simply by entering the name COM_BSP_MODIFY_BP into the relevant SAP transaction such as SE37 or SE38.
Function Group: COM_BUPA_BSP_SEARCH
Program Name: SAPLCOM_BUPA_BSP_SEARCH
Main Program: SAPLCOM_BUPA_BSP_SEARCH
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function COM_BSP_MODIFY_BP 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 'COM_BSP_MODIFY_BP'".
EXPORTING
IS_DATA = "Central Part Search Result
IS_DATA_X = "Update Structure
* IV_DUPLICATE_MESSAGE_TYPE = 'I' "Output: Schwere des Fehlers (N/' '-Normal, E/F/A-Fehler)
IMPORTING
EV_PARTNER_GUID = "GUID eines Geschäftspartners
EV_PARTNER = "Geschäftspartnernummer
ET_RETURN = "Returntabelle
TABLES
* ET_DUPLICATES = "SAP-GP: Rückgabestruktur für Adressdubletten im BAPI
IMPORTING Parameters details for COM_BSP_MODIFY_BP
IS_DATA - Central Part Search Result
Data type: COMT_BSP_SEARES_BPOptional: No
Call by Reference: Yes
IS_DATA_X - Update Structure
Data type: COMT_BSP_SEARES_BP_XOptional: No
Call by Reference: Yes
IV_DUPLICATE_MESSAGE_TYPE - Output: Schwere des Fehlers (N/SPACE-Normal, E/F/A-Fehler)
Data type: SEVERITYDefault: 'I'
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for COM_BSP_MODIFY_BP
EV_PARTNER_GUID - GUID eines Geschäftspartners
Data type: BU_PARTNER_GUIDOptional: No
Call by Reference: Yes
EV_PARTNER - Geschäftspartnernummer
Data type: BU_PARTNEROptional: No
Call by Reference: Yes
ET_RETURN - Returntabelle
Data type: BAPIRET2_TOptional: No
Call by Reference: Yes
TABLES Parameters details for COM_BSP_MODIFY_BP
ET_DUPLICATES - SAP-GP: Rückgabestruktur für Adressdubletten im BAPI
Data type: BAPIBUS1006_ADDRESS_DUPLICATESOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for COM_BSP_MODIFY_BP 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: | ||||
| lv_is_data | TYPE COMT_BSP_SEARES_BP, " | |||
| lt_et_duplicates | TYPE STANDARD TABLE OF BAPIBUS1006_ADDRESS_DUPLICATES, " | |||
| lv_ev_partner_guid | TYPE BU_PARTNER_GUID, " | |||
| lv_is_data_x | TYPE COMT_BSP_SEARES_BP_X, " | |||
| lv_ev_partner | TYPE BU_PARTNER, " | |||
| lv_et_return | TYPE BAPIRET2_T, " | |||
| lv_iv_duplicate_message_type | TYPE SEVERITY. " 'I' |
|   CALL FUNCTION 'COM_BSP_MODIFY_BP' " |
| EXPORTING | ||
| IS_DATA | = lv_is_data | |
| IS_DATA_X | = lv_is_data_x | |
| IV_DUPLICATE_MESSAGE_TYPE | = lv_iv_duplicate_message_type | |
| IMPORTING | ||
| EV_PARTNER_GUID | = lv_ev_partner_guid | |
| EV_PARTNER | = lv_ev_partner | |
| ET_RETURN | = lv_et_return | |
| TABLES | ||
| ET_DUPLICATES | = lt_et_duplicates | |
| . " COM_BSP_MODIFY_BP | ||
ABAP code using 7.40 inline data declarations to call FM COM_BSP_MODIFY_BP
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.| DATA(ld_iv_duplicate_message_type) | = 'I'. | |||
Search for further information about these or an SAP related objects