SAP BBP_IMS_INVOICE_UPDATE Function Module for Änderungen in die Rechnung übernehmen
BBP_IMS_INVOICE_UPDATE is a standard bbp ims invoice update SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Änderungen in die Rechnung übernehmen 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 bbp ims invoice update FM, simply by entering the name BBP_IMS_INVOICE_UPDATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: BBP_IV_IMS
Program Name: SAPLBBP_IV_IMS
Main Program: SAPLBBP_IV_IMS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function BBP_IMS_INVOICE_UPDATE 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 'BBP_IMS_INVOICE_UPDATE'"Änderungen in die Rechnung übernehmen.
EXPORTING
* IS_HEADER_FORM = "Header Stuktur für IMS Adobe Formular: Grund Datei
* IS_HEADER_PROP = "Eigenschaft der Header Stuktur für IMS Adobe Formular
IS_EXCEPTION_INFO = "Ereignis
* IT_ITEM_FORM = "Item Tabelle für IMS Adobe Formular
* IS_FEEDBACK = "Header Stuktur für IMS Adobe Formular: FEEDBACK von Benutzer
* IS_EXT_PARTNER = "Geschaeftspartner
* IV_EXIT_CALL = "boolsche Variable (X=true, -=false, space=unknown)
IMPORTING
ET_MESSAGES = "Fehlermeldungen zu einer PD-Methode
EXCEPTIONS
ERROR = 1 DOCUMENT_LOCKED = 2
IMPORTING Parameters details for BBP_IMS_INVOICE_UPDATE
IS_HEADER_FORM - Header Stuktur für IMS Adobe Formular: Grund Datei
Data type: BBP_IMS_HDR_IV_ADS_BASICOptional: Yes
Call by Reference: Yes
IS_HEADER_PROP - Eigenschaft der Header Stuktur für IMS Adobe Formular
Data type: BBP_IMS_HDR_IV_ADS_PROPOptional: Yes
Call by Reference: Yes
IS_EXCEPTION_INFO - Ereignis
Data type: BBP_IMS_IV_ADS_EXCEPTIONOptional: No
Call by Reference: Yes
IT_ITEM_FORM - Item Tabelle für IMS Adobe Formular
Data type: BBPT_IMS_ITEM_IV1_ADSOptional: Yes
Call by Reference: Yes
IS_FEEDBACK - Header Stuktur für IMS Adobe Formular: FEEDBACK von Benutzer
Data type: BBP_IMS_IV_ADS_FEEDBACKOptional: Yes
Call by Reference: Yes
IS_EXT_PARTNER - Geschaeftspartner
Data type: BBP_PDS_PARTNEROptional: Yes
Call by Reference: Yes
IV_EXIT_CALL - boolsche Variable (X=true, -=false, space=unknown)
Data type: BOOLEANOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for BBP_IMS_INVOICE_UPDATE
ET_MESSAGES - Fehlermeldungen zu einer PD-Methode
Data type: BBPT_PDS_MESSAGESOptional: No
Call by Reference: Yes
EXCEPTIONS details
ERROR -
Data type:Optional: No
Call by Reference: Yes
DOCUMENT_LOCKED -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for BBP_IMS_INVOICE_UPDATE 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_error | TYPE STRING, " | |||
| lv_et_messages | TYPE BBPT_PDS_MESSAGES, " | |||
| lv_is_header_form | TYPE BBP_IMS_HDR_IV_ADS_BASIC, " | |||
| lv_is_header_prop | TYPE BBP_IMS_HDR_IV_ADS_PROP, " | |||
| lv_document_locked | TYPE BBP_IMS_HDR_IV_ADS_PROP, " | |||
| lv_is_exception_info | TYPE BBP_IMS_IV_ADS_EXCEPTION, " | |||
| lv_it_item_form | TYPE BBPT_IMS_ITEM_IV1_ADS, " | |||
| lv_is_feedback | TYPE BBP_IMS_IV_ADS_FEEDBACK, " | |||
| lv_is_ext_partner | TYPE BBP_PDS_PARTNER, " | |||
| lv_iv_exit_call | TYPE BOOLEAN. " |
|   CALL FUNCTION 'BBP_IMS_INVOICE_UPDATE' "Änderungen in die Rechnung übernehmen |
| EXPORTING | ||
| IS_HEADER_FORM | = lv_is_header_form | |
| IS_HEADER_PROP | = lv_is_header_prop | |
| IS_EXCEPTION_INFO | = lv_is_exception_info | |
| IT_ITEM_FORM | = lv_it_item_form | |
| IS_FEEDBACK | = lv_is_feedback | |
| IS_EXT_PARTNER | = lv_is_ext_partner | |
| IV_EXIT_CALL | = lv_iv_exit_call | |
| IMPORTING | ||
| ET_MESSAGES | = lv_et_messages | |
| EXCEPTIONS | ||
| ERROR = 1 | ||
| DOCUMENT_LOCKED = 2 | ||
| . " BBP_IMS_INVOICE_UPDATE | ||
ABAP code using 7.40 inline data declarations to call FM BBP_IMS_INVOICE_UPDATE
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.Search for further information about these or an SAP related objects