SAP RMSL399_PARAM_CLASS Function Module for NOTRANSL: Erfragung der Klassifizierungs Selektionskriterien
RMSL399_PARAM_CLASS is a standard rmsl399 param class SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Erfragung der Klassifizierungs Selektionskriterien 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 rmsl399 param class FM, simply by entering the name RMSL399_PARAM_CLASS into the relevant SAP transaction such as SE37 or SE38.
Function Group: RMSL399
Program Name: SAPLRMSL399
Main Program: SAPLRMSL399
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RMSL399_PARAM_CLASS 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 'RMSL399_PARAM_CLASS'"NOTRANSL: Erfragung der Klassifizierungs Selektionskriterien.
EXPORTING
* I_KEYDATE = SY-DATUM "Key Date
IMPORTING
E_FLG_CANCEL = "Indicator: Dialog Was Canceled
E_FLG_BACK = "
ES_CLASS = "
ET_CHAR = "
IMPORTING Parameters details for RMSL399_PARAM_CLASS
I_KEYDATE - Key Date
Data type: RMSLE_KEY_DATEDefault: SY-DATUM
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for RMSL399_PARAM_CLASS
E_FLG_CANCEL - Indicator: Dialog Was Canceled
Data type: FLAGOptional: No
Call by Reference: Yes
E_FLG_BACK -
Data type: FLAGOptional: No
Call by Reference: Yes
ES_CLASS -
Data type: RMSLS_SEARCH_PARA_CLSOptional: No
Call by Reference: Yes
ET_CHAR -
Data type: TT_COMWOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for RMSL399_PARAM_CLASS 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_keydate | TYPE RMSLE_KEY_DATE, " SY-DATUM | |||
| lv_e_flg_cancel | TYPE FLAG, " | |||
| lv_e_flg_back | TYPE FLAG, " | |||
| lv_es_class | TYPE RMSLS_SEARCH_PARA_CLS, " | |||
| lv_et_char | TYPE TT_COMW. " |
|   CALL FUNCTION 'RMSL399_PARAM_CLASS' "NOTRANSL: Erfragung der Klassifizierungs Selektionskriterien |
| EXPORTING | ||
| I_KEYDATE | = lv_i_keydate | |
| IMPORTING | ||
| E_FLG_CANCEL | = lv_e_flg_cancel | |
| E_FLG_BACK | = lv_e_flg_back | |
| ES_CLASS | = lv_es_class | |
| ET_CHAR | = lv_et_char | |
| . " RMSL399_PARAM_CLASS | ||
ABAP code using 7.40 inline data declarations to call FM RMSL399_PARAM_CLASS
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.| DATA(ld_i_keydate) | = SY-DATUM. | |||
Search for further information about these or an SAP related objects