SAP BAPI_ISTBILLDOC_ADJUST Function Module for









BAPI_ISTBILLDOC_ADJUST is a standard bapi istbilldoc adjust 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 bapi istbilldoc adjust FM, simply by entering the name BAPI_ISTBILLDOC_ADJUST into the relevant SAP transaction such as SE37 or SE38.

Function Group: ISTINV_BILLBAPI
Program Name: SAPLISTINV_BILLBAPI
Main Program: SAPLISTINV_BILLBAPI
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function BAPI_ISTBILLDOC_ADJUST 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 'BAPI_ISTBILLDOC_ADJUST'"
EXPORTING
ADJUSTED_DOC = "
HEADER = "
* TESTRUN = ' ' "
* READ_ARCHIVE = ' ' "
* CFCVALIDATION = ' ' "

IMPORTING
NEW_ADJUSTMENTDOC = "

TABLES
* ITEMS = "
* TAXITEMS = "
* ADDITEMS = "
* EXTENSIONIN = "
* EXTENSIONOUT = "
* RETURN = "
.



IMPORTING Parameters details for BAPI_ISTBILLDOC_ADJUST

ADJUSTED_DOC -

Data type: BAPI_IST_EXT_ADJUSTED_DOC
Optional: No
Call by Reference: No ( called with pass by value option)

HEADER -

Data type: BAPI_IST_EXTDOC_H
Optional: No
Call by Reference: No ( called with pass by value option)

TESTRUN -

Data type: BAPI_IST_AUX-TESTRUN
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

READ_ARCHIVE -

Data type: BAPI_IST_READ_ARCHIVE
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

CFCVALIDATION -

Data type: BAPI_IST_AUX-CFCVALIDATION
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for BAPI_ISTBILLDOC_ADJUST

NEW_ADJUSTMENTDOC -

Data type: BAPI_IST_NEW_ADJUSTMENTDOC
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for BAPI_ISTBILLDOC_ADJUST

ITEMS -

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

TAXITEMS -

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

ADDITEMS -

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

EXTENSIONIN -

Data type: BAPIPAREX
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXTENSIONOUT -

Data type: BAPIPAREX
Optional: Yes
Call by Reference: No ( called with pass by value option)

RETURN -

Data type: BAPIRET2
Optional: Yes
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for BAPI_ISTBILLDOC_ADJUST 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_items  TYPE STANDARD TABLE OF BAPI_IST_EXTDOC_I, "   
lv_adjusted_doc  TYPE BAPI_IST_EXT_ADJUSTED_DOC, "   
lv_new_adjustmentdoc  TYPE BAPI_IST_NEW_ADJUSTMENTDOC, "   
lv_header  TYPE BAPI_IST_EXTDOC_H, "   
lt_taxitems  TYPE STANDARD TABLE OF BAPI_IST_EXTDOC_T, "   
lv_testrun  TYPE BAPI_IST_AUX-TESTRUN, "   SPACE
lt_additems  TYPE STANDARD TABLE OF BAPI_IST_EXTDOC_A, "   
lt_extensionin  TYPE STANDARD TABLE OF BAPIPAREX, "   
lv_read_archive  TYPE BAPI_IST_READ_ARCHIVE, "   SPACE
lt_extensionout  TYPE STANDARD TABLE OF BAPIPAREX, "   
lv_cfcvalidation  TYPE BAPI_IST_AUX-CFCVALIDATION, "   SPACE
lt_return  TYPE STANDARD TABLE OF BAPIRET2. "   

  CALL FUNCTION 'BAPI_ISTBILLDOC_ADJUST'  "
    EXPORTING
         ADJUSTED_DOC = lv_adjusted_doc
         HEADER = lv_header
         TESTRUN = lv_testrun
         READ_ARCHIVE = lv_read_archive
         CFCVALIDATION = lv_cfcvalidation
    IMPORTING
         NEW_ADJUSTMENTDOC = lv_new_adjustmentdoc
    TABLES
         ITEMS = lt_items
         TAXITEMS = lt_taxitems
         ADDITEMS = lt_additems
         EXTENSIONIN = lt_extensionin
         EXTENSIONOUT = lt_extensionout
         RETURN = lt_return
. " BAPI_ISTBILLDOC_ADJUST




ABAP code using 7.40 inline data declarations to call FM BAPI_ISTBILLDOC_ADJUST

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 TESTRUN FROM BAPI_IST_AUX INTO @DATA(ld_testrun).
DATA(ld_testrun) = ' '.
 
 
 
DATA(ld_read_archive) = ' '.
 
 
"SELECT single CFCVALIDATION FROM BAPI_IST_AUX INTO @DATA(ld_cfcvalidation).
DATA(ld_cfcvalidation) = ' '.
 
 


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!