SAP EFG_SMARTFORM_READ Function Module for
EFG_SMARTFORM_READ is a standard efg smartform read SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 efg smartform read FM, simply by entering the name EFG_SMARTFORM_READ into the relevant SAP transaction such as SE37 or SE38.
Function Group: EFG_SMARTFORMS
Program Name: SAPLEFG_SMARTFORMS
Main Program: SAPLEFG_SMARTFORMS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function EFG_SMARTFORM_READ 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 'EFG_SMARTFORM_READ'".
EXPORTING
X_SMARTFORM = "SmartForm for Application Form
* X_FLG_RUNTIME = "
IMPORTING
Y_TAB_IMPORT = "Smart Forms: Global Data
Y_TAB_GDATA = "Smart Forms: Global Data
Y_REF_SMARTFORM = "
Y_STRN_SMARTFORM = "Smart Form
Y_FLG_ACTIVE = "Active?
Y_FLG_INACTIVE = "
Y_STR_STXFPCUST = "
EXCEPTIONS
NOT_QUALIFIED = 1 NOT_FOUND = 2 FAILED = 3
IMPORTING Parameters details for EFG_SMARTFORM_READ
X_SMARTFORM - SmartForm for Application Form
Data type: EFG_DTE_SMARTFORMOptional: No
Call by Reference: No ( called with pass by value option)
X_FLG_RUNTIME -
Data type: EFG_DTE_FLAGOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for EFG_SMARTFORM_READ
Y_TAB_IMPORT - Smart Forms: Global Data
Data type: TSFIOPAROptional: No
Call by Reference: Yes
Y_TAB_GDATA - Smart Forms: Global Data
Data type: TSFGDATAOptional: No
Call by Reference: Yes
Y_REF_SMARTFORM -
Data type: CL_SSF_FB_SMART_FORMOptional: No
Call by Reference: Yes
Y_STRN_SMARTFORM - Smart Form
Data type: EFG_STRN_SMARTFORMOptional: No
Call by Reference: Yes
Y_FLG_ACTIVE - Active?
Data type: COptional: No
Call by Reference: Yes
Y_FLG_INACTIVE -
Data type: COptional: No
Call by Reference: Yes
Y_STR_STXFPCUST -
Data type: STXFPCUSTOptional: No
Call by Reference: Yes
EXCEPTIONS details
NOT_QUALIFIED -
Data type:Optional: No
Call by Reference: Yes
NOT_FOUND - Not Found
Data type:Optional: No
Call by Reference: Yes
FAILED -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for EFG_SMARTFORM_READ 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_x_smartform | TYPE EFG_DTE_SMARTFORM, " | |||
| lv_y_tab_import | TYPE TSFIOPAR, " | |||
| lv_not_qualified | TYPE TSFIOPAR, " | |||
| lv_not_found | TYPE TSFIOPAR, " | |||
| lv_y_tab_gdata | TYPE TSFGDATA, " | |||
| lv_x_flg_runtime | TYPE EFG_DTE_FLAG, " | |||
| lv_failed | TYPE EFG_DTE_FLAG, " | |||
| lv_y_ref_smartform | TYPE CL_SSF_FB_SMART_FORM, " | |||
| lv_y_strn_smartform | TYPE EFG_STRN_SMARTFORM, " | |||
| lv_y_flg_active | TYPE C, " | |||
| lv_y_flg_inactive | TYPE C, " | |||
| lv_y_str_stxfpcust | TYPE STXFPCUST. " |
|   CALL FUNCTION 'EFG_SMARTFORM_READ' " |
| EXPORTING | ||
| X_SMARTFORM | = lv_x_smartform | |
| X_FLG_RUNTIME | = lv_x_flg_runtime | |
| IMPORTING | ||
| Y_TAB_IMPORT | = lv_y_tab_import | |
| Y_TAB_GDATA | = lv_y_tab_gdata | |
| Y_REF_SMARTFORM | = lv_y_ref_smartform | |
| Y_STRN_SMARTFORM | = lv_y_strn_smartform | |
| Y_FLG_ACTIVE | = lv_y_flg_active | |
| Y_FLG_INACTIVE | = lv_y_flg_inactive | |
| Y_STR_STXFPCUST | = lv_y_str_stxfpcust | |
| EXCEPTIONS | ||
| NOT_QUALIFIED = 1 | ||
| NOT_FOUND = 2 | ||
| FAILED = 3 | ||
| . " EFG_SMARTFORM_READ | ||
ABAP code using 7.40 inline data declarations to call FM EFG_SMARTFORM_READ
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