SAP ISB_RM_BP_SAVE Function Module for IS-B: RM Save der BP- und BP-Verwaltungstabellen









ISB_RM_BP_SAVE is a standard isb rm bp save 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-B: RM Save der BP- und BP-Verwaltungstabellen 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 isb rm bp save FM, simply by entering the name ISB_RM_BP_SAVE into the relevant SAP transaction such as SE37 or SE38.

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



Function ISB_RM_BP_SAVE 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 'ISB_RM_BP_SAVE'"IS-B: RM Save der BP- und BP-Verwaltungstabellen
TABLES
IT_JBRBPCFV_OLD = "
IT_JBRAMOUNT_NEW = "
IT_JBREGSH_OLD = "
IT_JBREGSH_NEW = "
IT_JBRBPFART_OLD = "
IT_JBRBPFART_NEW = "
ERROR_ITAB = "
IT_JBRBPCFV_NEW = "
IT_JBRBSTV_OLD = "
IT_JBRBSTV_NEW = "
IT_JBRUBSTV_OLD = "
IT_JBRUBSTV_NEW = "
IT_JBRACCOUNT_OLD = "
IT_JBRACCOUNT_NEW = "
IT_JBRAMOUNT_OLD = "

EXCEPTIONS
ERROR = 1
.



TABLES Parameters details for ISB_RM_BP_SAVE

IT_JBRBPCFV_OLD -

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

IT_JBRAMOUNT_NEW -

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

IT_JBREGSH_OLD -

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

IT_JBREGSH_NEW -

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

IT_JBRBPFART_OLD -

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

IT_JBRBPFART_NEW -

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

ERROR_ITAB -

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

IT_JBRBPCFV_NEW -

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

IT_JBRBSTV_OLD -

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

IT_JBRBSTV_NEW -

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

IT_JBRUBSTV_OLD -

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

IT_JBRUBSTV_NEW -

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

IT_JBRACCOUNT_OLD -

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

IT_JBRACCOUNT_NEW -

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

IT_JBRAMOUNT_OLD -

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

EXCEPTIONS details

ERROR -

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

Copy and paste ABAP code example for ISB_RM_BP_SAVE 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, "   
lt_it_jbrbpcfv_old  TYPE STANDARD TABLE OF JBRBPCFVN, "   
lt_it_jbramount_new  TYPE STANDARD TABLE OF JBRAMOUNT, "   
lt_it_jbregsh_old  TYPE STANDARD TABLE OF JBREGSH, "   
lt_it_jbregsh_new  TYPE STANDARD TABLE OF JBREGSH, "   
lt_it_jbrbpfart_old  TYPE STANDARD TABLE OF JBRBPFART, "   
lt_it_jbrbpfart_new  TYPE STANDARD TABLE OF JBRBPFART, "   
lt_error_itab  TYPE STANDARD TABLE OF SPROT_X, "   
lt_it_jbrbpcfv_new  TYPE STANDARD TABLE OF JBRBPCFVN, "   
lt_it_jbrbstv_old  TYPE STANDARD TABLE OF JBRBSTV, "   
lt_it_jbrbstv_new  TYPE STANDARD TABLE OF JBRBSTV, "   
lt_it_jbrubstv_old  TYPE STANDARD TABLE OF JBRUBSTV, "   
lt_it_jbrubstv_new  TYPE STANDARD TABLE OF JBRUBSTV, "   
lt_it_jbraccount_old  TYPE STANDARD TABLE OF JBRACCOUNT, "   
lt_it_jbraccount_new  TYPE STANDARD TABLE OF JBRACCOUNT, "   
lt_it_jbramount_old  TYPE STANDARD TABLE OF JBRAMOUNT. "   

  CALL FUNCTION 'ISB_RM_BP_SAVE'  "IS-B: RM Save der BP- und BP-Verwaltungstabellen
    TABLES
         IT_JBRBPCFV_OLD = lt_it_jbrbpcfv_old
         IT_JBRAMOUNT_NEW = lt_it_jbramount_new
         IT_JBREGSH_OLD = lt_it_jbregsh_old
         IT_JBREGSH_NEW = lt_it_jbregsh_new
         IT_JBRBPFART_OLD = lt_it_jbrbpfart_old
         IT_JBRBPFART_NEW = lt_it_jbrbpfart_new
         ERROR_ITAB = lt_error_itab
         IT_JBRBPCFV_NEW = lt_it_jbrbpcfv_new
         IT_JBRBSTV_OLD = lt_it_jbrbstv_old
         IT_JBRBSTV_NEW = lt_it_jbrbstv_new
         IT_JBRUBSTV_OLD = lt_it_jbrubstv_old
         IT_JBRUBSTV_NEW = lt_it_jbrubstv_new
         IT_JBRACCOUNT_OLD = lt_it_jbraccount_old
         IT_JBRACCOUNT_NEW = lt_it_jbraccount_new
         IT_JBRAMOUNT_OLD = lt_it_jbramount_old
    EXCEPTIONS
        ERROR = 1
. " ISB_RM_BP_SAVE




ABAP code using 7.40 inline data declarations to call FM ISB_RM_BP_SAVE

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!