SAP ISB_RM_EVAL_PARAM_FILL Function Module for IS-B: RM füllt Parameter für Auswertungsbausteine aus allgemeiner SelTab.
ISB_RM_EVAL_PARAM_FILL is a standard isb rm eval param fill 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 füllt Parameter für Auswertungsbausteine aus allgemeiner SelTab. 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 eval param fill FM, simply by entering the name ISB_RM_EVAL_PARAM_FILL into the relevant SAP transaction such as SE37 or SE38.
Function Group: JBRW
Program Name: SAPLJBRW
Main Program: SAPLJBRW
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISB_RM_EVAL_PARAM_FILL 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_EVAL_PARAM_FILL'"IS-B: RM füllt Parameter für Auswertungsbausteine aus allgemeiner SelTab..
EXPORTING
* I_RMBID = "Name des RM-Bereichs
* I_EXTERNAL = "Kennzeichen für externen Aufruf, z.B. InSight
IMPORTING
E_JBRHSSPAR = "Parameterstruktur für Barwertauswertungen
E_JBRGAPPARAMETER = "Parameterstruktur für Gapauswertungen
E_HORI_T = "Tabelle der Horizonte
E_METH_T = "Tabelle der Methoden (Barwert, Clean Price,...)
E_VARTYPE = "VaR-Art
TABLES
I_SELTAB = "Allgemeine Selektionstabelle
* I_SF_TAB = "Tabelle der Merkmale im Bericht
* E_JBRSZENRAN = "Ranges-Tabelle der Szenarien
* E_JBRREGRAN = "Ranges-Tabelle der Regeln
* E_JBRSIMLFRAN = "Ranges-Tabelle der Simulationsläufe
* E_JBRBSTDRAN = "Ranges-Tabelle der simulierten Bestände
* E_CRIT_SELTAB = "Selektionstabelle RM-Bereichsmerkmale
* E_REP_SELTAB = "Selektionstabelle Berichtsmerkmale
* E_RM_DIM_T = "Tabelle der RM-Bereichsmerkmale im Bericht
IMPORTING Parameters details for ISB_RM_EVAL_PARAM_FILL
I_RMBID - Name des RM-Bereichs
Data type: JBRRMBM-RMBIDOptional: Yes
Call by Reference: No ( called with pass by value option)
I_EXTERNAL - Kennzeichen für externen Aufruf, z.B. InSight
Data type: JBRHSSPARI-EXTERNOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISB_RM_EVAL_PARAM_FILL
E_JBRHSSPAR - Parameterstruktur für Barwertauswertungen
Data type: JBRHSSPARIOptional: No
Call by Reference: No ( called with pass by value option)
E_JBRGAPPARAMETER - Parameterstruktur für Gapauswertungen
Data type: JBRGAPPARAMETEROptional: No
Call by Reference: No ( called with pass by value option)
E_HORI_T - Tabelle der Horizonte
Data type: JBRW_HORI_TOptional: No
Call by Reference: Yes
E_METH_T - Tabelle der Methoden (Barwert, Clean Price,...)
Data type: JBRW_METH_TOptional: No
Call by Reference: Yes
E_VARTYPE - VaR-Art
Data type: JBRW_VARTYPEOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISB_RM_EVAL_PARAM_FILL
I_SELTAB - Allgemeine Selektionstabelle
Data type: CEDSTOptional: No
Call by Reference: No ( called with pass by value option)
I_SF_TAB - Tabelle der Merkmale im Bericht
Data type: CFBSF01Optional: Yes
Call by Reference: No ( called with pass by value option)
E_JBRSZENRAN - Ranges-Tabelle der Szenarien
Data type: JBRSZENRANOptional: Yes
Call by Reference: No ( called with pass by value option)
E_JBRREGRAN - Ranges-Tabelle der Regeln
Data type: JBRREGRANOptional: Yes
Call by Reference: No ( called with pass by value option)
E_JBRSIMLFRAN - Ranges-Tabelle der Simulationsläufe
Data type: JBRSIMLFRANOptional: Yes
Call by Reference: No ( called with pass by value option)
E_JBRBSTDRAN - Ranges-Tabelle der simulierten Bestände
Data type: JBRBSTDRANOptional: Yes
Call by Reference: No ( called with pass by value option)
E_CRIT_SELTAB - Selektionstabelle RM-Bereichsmerkmale
Data type: CEDSTOptional: Yes
Call by Reference: No ( called with pass by value option)
E_REP_SELTAB - Selektionstabelle Berichtsmerkmale
Data type: CEDSTOptional: Yes
Call by Reference: No ( called with pass by value option)
E_RM_DIM_T - Tabelle der RM-Bereichsmerkmale im Bericht
Data type: JBRSIMOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISB_RM_EVAL_PARAM_FILL 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_i_rmbid | TYPE JBRRMBM-RMBID, " | |||
| lt_i_seltab | TYPE STANDARD TABLE OF CEDST, " | |||
| lv_e_jbrhsspar | TYPE JBRHSSPARI, " | |||
| lt_i_sf_tab | TYPE STANDARD TABLE OF CFBSF01, " | |||
| lv_i_external | TYPE JBRHSSPARI-EXTERN, " | |||
| lv_e_jbrgapparameter | TYPE JBRGAPPARAMETER, " | |||
| lv_e_hori_t | TYPE JBRW_HORI_T, " | |||
| lt_e_jbrszenran | TYPE STANDARD TABLE OF JBRSZENRAN, " | |||
| lv_e_meth_t | TYPE JBRW_METH_T, " | |||
| lt_e_jbrregran | TYPE STANDARD TABLE OF JBRREGRAN, " | |||
| lv_e_vartype | TYPE JBRW_VARTYPE, " | |||
| lt_e_jbrsimlfran | TYPE STANDARD TABLE OF JBRSIMLFRAN, " | |||
| lt_e_jbrbstdran | TYPE STANDARD TABLE OF JBRBSTDRAN, " | |||
| lt_e_crit_seltab | TYPE STANDARD TABLE OF CEDST, " | |||
| lt_e_rep_seltab | TYPE STANDARD TABLE OF CEDST, " | |||
| lt_e_rm_dim_t | TYPE STANDARD TABLE OF JBRSIM. " |
|   CALL FUNCTION 'ISB_RM_EVAL_PARAM_FILL' "IS-B: RM füllt Parameter für Auswertungsbausteine aus allgemeiner SelTab. |
| EXPORTING | ||
| I_RMBID | = lv_i_rmbid | |
| I_EXTERNAL | = lv_i_external | |
| IMPORTING | ||
| E_JBRHSSPAR | = lv_e_jbrhsspar | |
| E_JBRGAPPARAMETER | = lv_e_jbrgapparameter | |
| E_HORI_T | = lv_e_hori_t | |
| E_METH_T | = lv_e_meth_t | |
| E_VARTYPE | = lv_e_vartype | |
| TABLES | ||
| I_SELTAB | = lt_i_seltab | |
| I_SF_TAB | = lt_i_sf_tab | |
| E_JBRSZENRAN | = lt_e_jbrszenran | |
| E_JBRREGRAN | = lt_e_jbrregran | |
| E_JBRSIMLFRAN | = lt_e_jbrsimlfran | |
| E_JBRBSTDRAN | = lt_e_jbrbstdran | |
| E_CRIT_SELTAB | = lt_e_crit_seltab | |
| E_REP_SELTAB | = lt_e_rep_seltab | |
| E_RM_DIM_T | = lt_e_rm_dim_t | |
| . " ISB_RM_EVAL_PARAM_FILL | ||
ABAP code using 7.40 inline data declarations to call FM ISB_RM_EVAL_PARAM_FILL
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 RMBID FROM JBRRMBM INTO @DATA(ld_i_rmbid). | ||||
| "SELECT single EXTERN FROM JBRHSSPARI INTO @DATA(ld_i_external). | ||||
Search for further information about these or an SAP related objects