SAP FRML562_EXCVAL_CHECK_AND_F4 Function Module for NOTRANSL: RMS-FRM: F4-Hilfe für Ausnahmewerte
FRML562_EXCVAL_CHECK_AND_F4 is a standard frml562 excval check and f4 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: RMS-FRM: F4-Hilfe für Ausnahmewerte 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 frml562 excval check and f4 FM, simply by entering the name FRML562_EXCVAL_CHECK_AND_F4 into the relevant SAP transaction such as SE37 or SE38.
Function Group: FRML562
Program Name: SAPLFRML562
Main Program: SAPLFRML562
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FRML562_EXCVAL_CHECK_AND_F4 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 'FRML562_EXCVAL_CHECK_AND_F4'"NOTRANSL: RMS-FRM: F4-Hilfe für Ausnahmewerte.
EXPORTING
I_LEVEL = "View of a Recipe Formula
* I_CHECK_EXCVAL_FLG = "Customizing: General Indicator
* I_DISPLAY = ' ' "Input Ready
* I_FN_EXCVAL = FRM10_GC_FN-EXCVAL "
* I_FN_EXCVAL_TXT = 'EXCVAL_TXT' "
* I_FN_FLG_OUT = FRM10_GC_FN-FLG_OUT "
IMPORTING
E_ERR_FLG = "Customizing: General Indicator
CHANGING
XS_DATA = "RMS-FRM: Screen Structure for LoM - LoRS
EXCEPTIONS
PARAMETER_ERROR = 1
IMPORTING Parameters details for FRML562_EXCVAL_CHECK_AND_F4
I_LEVEL - View of a Recipe Formula
Data type: FRMLE_LEVELOptional: No
Call by Reference: Yes
I_CHECK_EXCVAL_FLG - Customizing: General Indicator
Data type: FRMLE_FLAGOptional: Yes
Call by Reference: Yes
I_DISPLAY - Input Ready
Data type: FRMLE_FLAGDefault: ' '
Optional: Yes
Call by Reference: Yes
I_FN_EXCVAL -
Data type: FIELDNAMEDefault: FRM10_GC_FN-EXCVAL
Optional: Yes
Call by Reference: Yes
I_FN_EXCVAL_TXT -
Data type: FIELDNAMEDefault: 'EXCVAL_TXT'
Optional: Yes
Call by Reference: Yes
I_FN_FLG_OUT -
Data type: FIELDNAMEDefault: FRM10_GC_FN-FLG_OUT
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for FRML562_EXCVAL_CHECK_AND_F4
E_ERR_FLG - Customizing: General Indicator
Data type: FRMLE_FLAGOptional: No
Call by Reference: Yes
CHANGING Parameters details for FRML562_EXCVAL_CHECK_AND_F4
XS_DATA - RMS-FRM: Screen Structure for LoM - LoRS
Data type: ANYOptional: No
Call by Reference: Yes
EXCEPTIONS details
PARAMETER_ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FRML562_EXCVAL_CHECK_AND_F4 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_level | TYPE FRMLE_LEVEL, " | |||
| lv_xs_data | TYPE ANY, " | |||
| lv_e_err_flg | TYPE FRMLE_FLAG, " | |||
| lv_parameter_error | TYPE FRMLE_FLAG, " | |||
| lv_i_check_excval_flg | TYPE FRMLE_FLAG, " | |||
| lv_i_display | TYPE FRMLE_FLAG, " ' ' | |||
| lv_i_fn_excval | TYPE FIELDNAME, " FRM10_GC_FN-EXCVAL | |||
| lv_i_fn_excval_txt | TYPE FIELDNAME, " 'EXCVAL_TXT' | |||
| lv_i_fn_flg_out | TYPE FIELDNAME. " FRM10_GC_FN-FLG_OUT |
|   CALL FUNCTION 'FRML562_EXCVAL_CHECK_AND_F4' "NOTRANSL: RMS-FRM: F4-Hilfe für Ausnahmewerte |
| EXPORTING | ||
| I_LEVEL | = lv_i_level | |
| I_CHECK_EXCVAL_FLG | = lv_i_check_excval_flg | |
| I_DISPLAY | = lv_i_display | |
| I_FN_EXCVAL | = lv_i_fn_excval | |
| I_FN_EXCVAL_TXT | = lv_i_fn_excval_txt | |
| I_FN_FLG_OUT | = lv_i_fn_flg_out | |
| IMPORTING | ||
| E_ERR_FLG | = lv_e_err_flg | |
| CHANGING | ||
| XS_DATA | = lv_xs_data | |
| EXCEPTIONS | ||
| PARAMETER_ERROR = 1 | ||
| . " FRML562_EXCVAL_CHECK_AND_F4 | ||
ABAP code using 7.40 inline data declarations to call FM FRML562_EXCVAL_CHECK_AND_F4
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_display) | = ' '. | |||
| DATA(ld_i_fn_excval) | = FRM10_GC_FN-EXCVAL. | |||
| DATA(ld_i_fn_excval_txt) | = 'EXCVAL_TXT'. | |||
| DATA(ld_i_fn_flg_out) | = FRM10_GC_FN-FLG_OUT. | |||
Search for further information about these or an SAP related objects