SAP ISB_RM_DIMENSION_CHECK Function Module for IS-B: RM Check der Merkmale









ISB_RM_DIMENSION_CHECK is a standard isb rm dimension check 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 Check der Merkmale 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 dimension check FM, simply by entering the name ISB_RM_DIMENSION_CHECK into the relevant SAP transaction such as SE37 or SE38.

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



Function ISB_RM_DIMENSION_CHECK 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_DIMENSION_CHECK'"IS-B: RM Check der Merkmale
EXPORTING
* CHECK = '3' "Check-Level
PROGN = "Name des Dienstprogrammes
RMBID = "Risikomanagementbereich

TABLES
IT_JBIXOBEXT = "Datensätze der FDÜ - erweitert
IT_I75XXXX = "Datensätze der FDÜ - Merkmale
IT_JBRRMBM = "Zuordnung RM-Bereich <> Merkmale
* IT_FIELD_EXPT = "Tabelle der nicht zu prüfenden Merkmale
ERROR_ITAB = "Fehlertabelle

EXCEPTIONS
ERROR = 1
.



IMPORTING Parameters details for ISB_RM_DIMENSION_CHECK

CHECK - Check-Level

Data type: JBISTRU-CHECK
Default: '3'
Optional: Yes
Call by Reference: No ( called with pass by value option)

PROGN - Name des Dienstprogrammes

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

RMBID - Risikomanagementbereich

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

TABLES Parameters details for ISB_RM_DIMENSION_CHECK

IT_JBIXOBEXT - Datensätze der FDÜ - erweitert

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

IT_I75XXXX - Datensätze der FDÜ - Merkmale

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

IT_JBRRMBM - Zuordnung RM-Bereich <> Merkmale

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

IT_FIELD_EXPT - Tabelle der nicht zu prüfenden Merkmale

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

ERROR_ITAB - Fehlertabelle

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

EXCEPTIONS details

ERROR - Fataler Fehler

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

Copy and paste ABAP code example for ISB_RM_DIMENSION_CHECK 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_check  TYPE JBISTRU-CHECK, "   '3'
lv_error  TYPE JBISTRU, "   
lt_it_jbixobext  TYPE STANDARD TABLE OF JBIXOBEXT, "   
lv_progn  TYPE RMDIA_PROGN, "   
lt_it_i75xxxx  TYPE STANDARD TABLE OF RMDIA_PROGN, "   
lv_rmbid  TYPE JBRRMBBF-RMBID, "   
lt_it_jbrrmbm  TYPE STANDARD TABLE OF JBRRMBM, "   
lt_it_field_expt  TYPE STANDARD TABLE OF AFO_FIELD_EXPT, "   
lt_error_itab  TYPE STANDARD TABLE OF SPROT_X. "   

  CALL FUNCTION 'ISB_RM_DIMENSION_CHECK'  "IS-B: RM Check der Merkmale
    EXPORTING
         CHECK = lv_check
         PROGN = lv_progn
         RMBID = lv_rmbid
    TABLES
         IT_JBIXOBEXT = lt_it_jbixobext
         IT_I75XXXX = lt_it_i75xxxx
         IT_JBRRMBM = lt_it_jbrrmbm
         IT_FIELD_EXPT = lt_it_field_expt
         ERROR_ITAB = lt_error_itab
    EXCEPTIONS
        ERROR = 1
. " ISB_RM_DIMENSION_CHECK




ABAP code using 7.40 inline data declarations to call FM ISB_RM_DIMENSION_CHECK

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 CHECK FROM JBISTRU INTO @DATA(ld_check).
DATA(ld_check) = '3'.
 
 
 
 
 
"SELECT single RMBID FROM JBRRMBBF INTO @DATA(ld_rmbid).
 
 
 
 


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!