SAP FM_EA_UTIL_SFM_VAL Function Module for Sample Dynamic Function Module to Fetch Values
FM_EA_UTIL_SFM_VAL is a standard fm ea util sfm val SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Sample Dynamic Function Module to Fetch Values 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 fm ea util sfm val FM, simply by entering the name FM_EA_UTIL_SFM_VAL into the relevant SAP transaction such as SE37 or SE38.
Function Group: EH_EA_UTIL
Program Name: SAPLEH_EA_UTIL
Main Program: SAPLEH_EA_UTIL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FM_EA_UTIL_SFM_VAL 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 'FM_EA_UTIL_SFM_VAL'"Sample Dynamic Function Module to Fetch Values.
EXPORTING
IFD_PERNR = "Personnel number
IFD_EASTP = "Solution Type
IFD_EAHFD = "Header Field
IFD_EAIOD = "Creation Date
IFD_R_MASSN = "Action Type
IFD_R_MASSG = "Reason for Action
IFD_R_EADRN = "Detailed Reason
IMPORTING
ETB_VALUE = "Table type to hold the values
EFD_DFVAL = "Default Value for Custom Field
EFD_ERRFG = "Error Flag
IMPORTING Parameters details for FM_EA_UTIL_SFM_VAL
IFD_PERNR - Personnel number
Data type: PERSNOOptional: No
Call by Reference: Yes
IFD_EASTP - Solution Type
Data type: PIN_EASTPOptional: No
Call by Reference: Yes
IFD_EAHFD - Header Field
Data type: PIN_EAHFDOptional: No
Call by Reference: Yes
IFD_EAIOD - Creation Date
Data type: PIN_EAIODOptional: No
Call by Reference: Yes
IFD_R_MASSN - Action Type
Data type: MASSNOptional: No
Call by Reference: Yes
IFD_R_MASSG - Reason for Action
Data type: MASSGOptional: No
Call by Reference: Yes
IFD_R_EADRN - Detailed Reason
Data type: PIN_EADRNOptional: No
Call by Reference: Yes
EXPORTING Parameters details for FM_EA_UTIL_SFM_VAL
ETB_VALUE - Table type to hold the values
Data type: HRESSIN_EATTFVLOptional: No
Call by Reference: Yes
EFD_DFVAL - Default Value for Custom Field
Data type: PIN_EADFVOptional: No
Call by Reference: Yes
EFD_ERRFG - Error Flag
Data type: PIN_EAEFLOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FM_EA_UTIL_SFM_VAL 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_etb_value | TYPE HRESSIN_EATTFVL, " | |||
| lv_ifd_pernr | TYPE PERSNO, " | |||
| lv_efd_dfval | TYPE PIN_EADFV, " | |||
| lv_ifd_eastp | TYPE PIN_EASTP, " | |||
| lv_efd_errfg | TYPE PIN_EAEFL, " | |||
| lv_ifd_eahfd | TYPE PIN_EAHFD, " | |||
| lv_ifd_eaiod | TYPE PIN_EAIOD, " | |||
| lv_ifd_r_massn | TYPE MASSN, " | |||
| lv_ifd_r_massg | TYPE MASSG, " | |||
| lv_ifd_r_eadrn | TYPE PIN_EADRN. " |
|   CALL FUNCTION 'FM_EA_UTIL_SFM_VAL' "Sample Dynamic Function Module to Fetch Values |
| EXPORTING | ||
| IFD_PERNR | = lv_ifd_pernr | |
| IFD_EASTP | = lv_ifd_eastp | |
| IFD_EAHFD | = lv_ifd_eahfd | |
| IFD_EAIOD | = lv_ifd_eaiod | |
| IFD_R_MASSN | = lv_ifd_r_massn | |
| IFD_R_MASSG | = lv_ifd_r_massg | |
| IFD_R_EADRN | = lv_ifd_r_eadrn | |
| IMPORTING | ||
| ETB_VALUE | = lv_etb_value | |
| EFD_DFVAL | = lv_efd_dfval | |
| EFD_ERRFG | = lv_efd_errfg | |
| . " FM_EA_UTIL_SFM_VAL | ||
ABAP code using 7.40 inline data declarations to call FM FM_EA_UTIL_SFM_VAL
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