SAP EFG_SMARTFORM_SAVE Function Module for
EFG_SMARTFORM_SAVE is a standard efg smartform save 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 save FM, simply by entering the name EFG_SMARTFORM_SAVE 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_SAVE 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_SAVE'".
EXPORTING
* X_SMARTFORM = "SmartForm for Application Form
X_REF_SMARTFORM = "
* REF_LOG = CL_EFG_LOG=>NULL "
IMPORTING
Y_MSG = "System Message
EXCEPTIONS
NOT_QUALIFIED = 1 CANCELLED = 2 FAILED = 3
IMPORTING Parameters details for EFG_SMARTFORM_SAVE
X_SMARTFORM - SmartForm for Application Form
Data type: EFG_DTE_SMARTFORMOptional: Yes
Call by Reference: No ( called with pass by value option)
X_REF_SMARTFORM -
Data type: CL_SSF_FB_SMART_FORMOptional: No
Call by Reference: No ( called with pass by value option)
REF_LOG -
Data type: IF_EFG_LOGDefault: CL_EFG_LOG=>NULL
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for EFG_SMARTFORM_SAVE
Y_MSG - System Message
Data type: EFG_STR_MSGOptional: No
Call by Reference: Yes
EXCEPTIONS details
NOT_QUALIFIED -
Data type:Optional: No
Call by Reference: Yes
CANCELLED - Canceled by user
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_SAVE 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_y_msg | TYPE EFG_STR_MSG, " | |||
| lv_x_smartform | TYPE EFG_DTE_SMARTFORM, " | |||
| lv_not_qualified | TYPE EFG_DTE_SMARTFORM, " | |||
| lv_cancelled | TYPE EFG_DTE_SMARTFORM, " | |||
| lv_x_ref_smartform | TYPE CL_SSF_FB_SMART_FORM, " | |||
| lv_failed | TYPE CL_SSF_FB_SMART_FORM, " | |||
| lv_ref_log | TYPE IF_EFG_LOG. " CL_EFG_LOG=>NULL |
|   CALL FUNCTION 'EFG_SMARTFORM_SAVE' " |
| EXPORTING | ||
| X_SMARTFORM | = lv_x_smartform | |
| X_REF_SMARTFORM | = lv_x_ref_smartform | |
| REF_LOG | = lv_ref_log | |
| IMPORTING | ||
| Y_MSG | = lv_y_msg | |
| EXCEPTIONS | ||
| NOT_QUALIFIED = 1 | ||
| CANCELLED = 2 | ||
| FAILED = 3 | ||
| . " EFG_SMARTFORM_SAVE | ||
ABAP code using 7.40 inline data declarations to call FM EFG_SMARTFORM_SAVE
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_ref_log) | = CL_EFG_LOG=>NULL. | |||
Search for further information about these or an SAP related objects