SAP ISM_JGBP_UPDATE_DEBITOR Function Module for IS-M: BAPI BP: Update









ISM_JGBP_UPDATE_DEBITOR is a standard ism jgbp update debitor SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-M: BAPI BP: Update 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 ism jgbp update debitor FM, simply by entering the name ISM_JGBP_UPDATE_DEBITOR into the relevant SAP transaction such as SE37 or SE38.

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



Function ISM_JGBP_UPDATE_DEBITOR 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 'ISM_JGBP_UPDATE_DEBITOR'"IS-M: BAPI BP: Update
TABLES
* PT_KNA1_STAT = "
* PT_E1KNB1M = "IS-M: E1KNB1M KUNNR TAB
* PT_E1KNVVM = "IS-M: E1KNVVM KUNNR TAB
* PT_KNB1_STAT = "
* PT_KNVV_STAT = "
* PT_KNB5_STAT = "IS-M: JGBP BAPI KNB5 Update Task TAB
* PT_KNVI_STAT = "
* PT_CUST_CENT_X = "
* PT_CUST_COMP_X = "
* PT_CUST_SALES_X = "
* PT_E1KNA1M = "IS-M: E1KNA1M TAB
.



TABLES Parameters details for ISM_JGBP_UPDATE_DEBITOR

PT_KNA1_STAT -

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

PT_E1KNB1M - IS-M: E1KNB1M KUNNR TAB

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

PT_E1KNVVM - IS-M: E1KNVVM KUNNR TAB

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

PT_KNB1_STAT -

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

PT_KNVV_STAT -

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

PT_KNB5_STAT - IS-M: JGBP BAPI KNB5 Update Task TAB

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

PT_KNVI_STAT -

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

PT_CUST_CENT_X -

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

PT_CUST_COMP_X -

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

PT_CUST_SALES_X -

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

PT_E1KNA1M - IS-M: E1KNA1M TAB

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

Copy and paste ABAP code example for ISM_JGBP_UPDATE_DEBITOR 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_pt_kna1_stat  TYPE STANDARD TABLE OF RJGBP_KNA1_STAT_TAB, "   
lt_pt_e1knb1m  TYPE STANDARD TABLE OF RJGBP_E1KNB1M_KUNNR_TAB, "   
lt_pt_e1knvvm  TYPE STANDARD TABLE OF RJGBP_E1KNVVM_KUNNR_TAB, "   
lt_pt_knb1_stat  TYPE STANDARD TABLE OF RJGBP_KNB1_STAT_TAB, "   
lt_pt_knvv_stat  TYPE STANDARD TABLE OF RJGBP_KNVV_STAT_TAB, "   
lt_pt_knb5_stat  TYPE STANDARD TABLE OF RJGBP_KNB5_STAT_TAB, "   
lt_pt_knvi_stat  TYPE STANDARD TABLE OF RJGBP_KNVI_STAT_TAB, "   
lt_pt_cust_cent_x  TYPE STANDARD TABLE OF RJGBP_CUST_CENT_X_STAT_TAB, "   
lt_pt_cust_comp_x  TYPE STANDARD TABLE OF RJGBP_CUST_COMP_X_STAT_TAB, "   
lt_pt_cust_sales_x  TYPE STANDARD TABLE OF RJGBP_CUST_SALES_X_STAT_TAB, "   
lt_pt_e1kna1m  TYPE STANDARD TABLE OF RJGBP_E1KNA1M_TAB. "   

  CALL FUNCTION 'ISM_JGBP_UPDATE_DEBITOR'  "IS-M: BAPI BP: Update
    TABLES
         PT_KNA1_STAT = lt_pt_kna1_stat
         PT_E1KNB1M = lt_pt_e1knb1m
         PT_E1KNVVM = lt_pt_e1knvvm
         PT_KNB1_STAT = lt_pt_knb1_stat
         PT_KNVV_STAT = lt_pt_knvv_stat
         PT_KNB5_STAT = lt_pt_knb5_stat
         PT_KNVI_STAT = lt_pt_knvi_stat
         PT_CUST_CENT_X = lt_pt_cust_cent_x
         PT_CUST_COMP_X = lt_pt_cust_comp_x
         PT_CUST_SALES_X = lt_pt_cust_sales_x
         PT_E1KNA1M = lt_pt_e1kna1m
. " ISM_JGBP_UPDATE_DEBITOR




ABAP code using 7.40 inline data declarations to call FM ISM_JGBP_UPDATE_DEBITOR

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



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!