SAP /AIF/SUBMIT_FUNCTION Function Module for Submit Program (Type 1)
/AIF/SUBMIT_FUNCTION is a standard /aif/submit function SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Submit Program (Type 1) 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 /aif/submit function FM, simply by entering the name /AIF/SUBMIT_FUNCTION into the relevant SAP transaction such as SE37 or SE38.
Function Group: /AIF/CUSTOM_FUNCTIONS
Program Name: /AIF/SAPLCUSTOM_FUNCTIONS
Main Program: /AIF/SAPLCUSTOM_FUNCTIONS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function /AIF/SUBMIT_FUNCTION 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 '/AIF/SUBMIT_FUNCTION'"Submit Program (Type 1).
EXPORTING
IV_REPORT = "Program Name
IV_DYPNO = "Screen number
IV_SFS = "Function Flag
IV_MSGV1 = "Message Variable
IV_MSGV2 = "Message Variable
IV_MSGV3 = "Message Variable
IV_MSGV4 = "Message Variable
TABLES
LT_PARSUBMIT = "Parameters
IMPORTING Parameters details for /AIF/SUBMIT_FUNCTION
IV_REPORT - Program Name
Data type: PROGRAM_IDOptional: No
Call by Reference: No ( called with pass by value option)
IV_DYPNO - Screen number
Data type: DYNPRONROptional: No
Call by Reference: No ( called with pass by value option)
IV_SFS - Function Flag
Data type: /AIF/FUNC_FLAGOptional: No
Call by Reference: No ( called with pass by value option)
IV_MSGV1 - Message Variable
Data type: SYMSGVOptional: No
Call by Reference: No ( called with pass by value option)
IV_MSGV2 - Message Variable
Data type: SYMSGVOptional: No
Call by Reference: No ( called with pass by value option)
IV_MSGV3 - Message Variable
Data type: SYMSGVOptional: No
Call by Reference: No ( called with pass by value option)
IV_MSGV4 - Message Variable
Data type: SYMSGVOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for /AIF/SUBMIT_FUNCTION
LT_PARSUBMIT - Parameters
Data type: /AIF/PARAM_TTOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for /AIF/SUBMIT_FUNCTION 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_iv_report | TYPE PROGRAM_ID, " | |||
| lt_lt_parsubmit | TYPE STANDARD TABLE OF /AIF/PARAM_TT, " | |||
| lv_iv_dypno | TYPE DYNPRONR, " | |||
| lv_iv_sfs | TYPE /AIF/FUNC_FLAG, " | |||
| lv_iv_msgv1 | TYPE SYMSGV, " | |||
| lv_iv_msgv2 | TYPE SYMSGV, " | |||
| lv_iv_msgv3 | TYPE SYMSGV, " | |||
| lv_iv_msgv4 | TYPE SYMSGV. " |
|   CALL FUNCTION '/AIF/SUBMIT_FUNCTION' "Submit Program (Type 1) |
| EXPORTING | ||
| IV_REPORT | = lv_iv_report | |
| IV_DYPNO | = lv_iv_dypno | |
| IV_SFS | = lv_iv_sfs | |
| IV_MSGV1 | = lv_iv_msgv1 | |
| IV_MSGV2 | = lv_iv_msgv2 | |
| IV_MSGV3 | = lv_iv_msgv3 | |
| IV_MSGV4 | = lv_iv_msgv4 | |
| TABLES | ||
| LT_PARSUBMIT | = lt_lt_parsubmit | |
| . " /AIF/SUBMIT_FUNCTION | ||
ABAP code using 7.40 inline data declarations to call FM /AIF/SUBMIT_FUNCTION
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