SAP ISB_RM_UPDATE_EXT_REGEL Function Module for IS-B: RM Verbuchen der Externen Shiftregel nach der Bearbeitung









ISB_RM_UPDATE_EXT_REGEL is a standard isb rm update ext regel 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 Verbuchen der Externen Shiftregel nach der Bearbeitung 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 update ext regel FM, simply by entering the name ISB_RM_UPDATE_EXT_REGEL into the relevant SAP transaction such as SE37 or SE38.

Function Group: JBR1
Program Name: SAPLJBR1
Main Program: SAPLJBR1
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update: 2



Function ISB_RM_UPDATE_EXT_REGEL 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_UPDATE_EXT_REGEL'"IS-B: RM Verbuchen der Externen Shiftregel nach der Bearbeitung
EXPORTING
IS_JBRREGD = "
IS_JBRREGDT = "
CHECK_JBRREGD = "
CHECK_JBRREGDT = "

TABLES
I_JBRREGW = "
I_JBRREGWT = "
CHECK_JBRREGW = "
CHECK_JBRREGWT = "

EXCEPTIONS
ERROR_WHILE_SAVING = 1
.



IMPORTING Parameters details for ISB_RM_UPDATE_EXT_REGEL

IS_JBRREGD -

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

IS_JBRREGDT -

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

CHECK_JBRREGD -

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

CHECK_JBRREGDT -

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

TABLES Parameters details for ISB_RM_UPDATE_EXT_REGEL

I_JBRREGW -

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

I_JBRREGWT -

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

CHECK_JBRREGW -

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

CHECK_JBRREGWT -

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

EXCEPTIONS details

ERROR_WHILE_SAVING -

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

Copy and paste ABAP code example for ISB_RM_UPDATE_EXT_REGEL 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_i_jbrregw  TYPE STANDARD TABLE OF JBRREGW, "   
lv_is_jbrregd  TYPE JBRREGD, "   
lv_error_while_saving  TYPE JBRREGD, "   
lt_i_jbrregwt  TYPE STANDARD TABLE OF JBRREGWT, "   
lv_is_jbrregdt  TYPE JBRREGDT, "   
lv_check_jbrregd  TYPE JBRREGD, "   
lt_check_jbrregw  TYPE STANDARD TABLE OF JBRREGW, "   
lv_check_jbrregdt  TYPE JBRREGDT, "   
lt_check_jbrregwt  TYPE STANDARD TABLE OF JBRREGWT. "   

  CALL FUNCTION 'ISB_RM_UPDATE_EXT_REGEL'  "IS-B: RM Verbuchen der Externen Shiftregel nach der Bearbeitung
    EXPORTING
         IS_JBRREGD = lv_is_jbrregd
         IS_JBRREGDT = lv_is_jbrregdt
         CHECK_JBRREGD = lv_check_jbrregd
         CHECK_JBRREGDT = lv_check_jbrregdt
    TABLES
         I_JBRREGW = lt_i_jbrregw
         I_JBRREGWT = lt_i_jbrregwt
         CHECK_JBRREGW = lt_check_jbrregw
         CHECK_JBRREGWT = lt_check_jbrregwt
    EXCEPTIONS
        ERROR_WHILE_SAVING = 1
. " ISB_RM_UPDATE_EXT_REGEL




ABAP code using 7.40 inline data declarations to call FM ISB_RM_UPDATE_EXT_REGEL

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!