SAP SAMPLE_PROCESS_00700310 Function Module for Interface Description for Process 00700310
SAMPLE_PROCESS_00700310 is a standard sample process 00700310 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Interface Description for Process 00700310 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 sample process 00700310 FM, simply by entering the name SAMPLE_PROCESS_00700310 into the relevant SAP transaction such as SE37 or SE38.
Function Group: FVBTESMPL
Program Name: SAPLFVBTESMPL
Main Program:
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SAMPLE_PROCESS_00700310 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 'SAMPLE_PROCESS_00700310'"Interface Description for Process 00700310.
EXPORTING
I_VIOB01 = "
I_VIOB03 = "
I_SANO1 = "
I_VZSORT = "
I_AKTYP = "
TABLES
IT_VZGPO = "
IT_VIOB42 = "
ET_MSG = "
IT_VIEIGE = "
IT_VIOB04 = "
IT_VIOB05 = "
IT_VIOB20 = "
IT_VIOB37 = "
IT_VIOB38 = "
IT_VIOB39 = "
IT_AREA = "
IMPORTING Parameters details for SAMPLE_PROCESS_00700310
I_VIOB01 -
Data type: VIOB01Optional: No
Call by Reference: Yes
I_VIOB03 -
Data type: VIOB03Optional: No
Call by Reference: Yes
I_SANO1 -
Data type: SANO1Optional: No
Call by Reference: Yes
I_VZSORT -
Data type: VZSORTOptional: No
Call by Reference: Yes
I_AKTYP -
Data type: BU_AKTYPOptional: No
Call by Reference: Yes
TABLES Parameters details for SAMPLE_PROCESS_00700310
IT_VZGPO -
Data type: VZGPOOptional: No
Call by Reference: No ( called with pass by value option)
IT_VIOB42 -
Data type: VIOB42Optional: No
Call by Reference: No ( called with pass by value option)
ET_MSG -
Data type: SYMSGOptional: No
Call by Reference: No ( called with pass by value option)
IT_VIEIGE -
Data type: VIEIGEOptional: No
Call by Reference: No ( called with pass by value option)
IT_VIOB04 -
Data type: VIOB04Optional: No
Call by Reference: No ( called with pass by value option)
IT_VIOB05 -
Data type: VIOB05Optional: No
Call by Reference: No ( called with pass by value option)
IT_VIOB20 -
Data type: VIOB20Optional: No
Call by Reference: No ( called with pass by value option)
IT_VIOB37 -
Data type: VIOB37Optional: No
Call by Reference: No ( called with pass by value option)
IT_VIOB38 -
Data type: VIOB38Optional: No
Call by Reference: No ( called with pass by value option)
IT_VIOB39 -
Data type: VIOB39Optional: No
Call by Reference: No ( called with pass by value option)
IT_AREA -
Data type: VIOB41Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SAMPLE_PROCESS_00700310 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: | ||||
| lt_it_vzgpo | TYPE STANDARD TABLE OF VZGPO, " | |||
| lv_i_viob01 | TYPE VIOB01, " | |||
| lt_it_viob42 | TYPE STANDARD TABLE OF VIOB42, " | |||
| lt_et_msg | TYPE STANDARD TABLE OF SYMSG, " | |||
| lv_i_viob03 | TYPE VIOB03, " | |||
| lt_it_vieige | TYPE STANDARD TABLE OF VIEIGE, " | |||
| lv_i_sano1 | TYPE SANO1, " | |||
| lt_it_viob04 | TYPE STANDARD TABLE OF VIOB04, " | |||
| lv_i_vzsort | TYPE VZSORT, " | |||
| lt_it_viob05 | TYPE STANDARD TABLE OF VIOB05, " | |||
| lv_i_aktyp | TYPE BU_AKTYP, " | |||
| lt_it_viob20 | TYPE STANDARD TABLE OF VIOB20, " | |||
| lt_it_viob37 | TYPE STANDARD TABLE OF VIOB37, " | |||
| lt_it_viob38 | TYPE STANDARD TABLE OF VIOB38, " | |||
| lt_it_viob39 | TYPE STANDARD TABLE OF VIOB39, " | |||
| lt_it_area | TYPE STANDARD TABLE OF VIOB41. " |
|   CALL FUNCTION 'SAMPLE_PROCESS_00700310' "Interface Description for Process 00700310 |
| EXPORTING | ||
| I_VIOB01 | = lv_i_viob01 | |
| I_VIOB03 | = lv_i_viob03 | |
| I_SANO1 | = lv_i_sano1 | |
| I_VZSORT | = lv_i_vzsort | |
| I_AKTYP | = lv_i_aktyp | |
| TABLES | ||
| IT_VZGPO | = lt_it_vzgpo | |
| IT_VIOB42 | = lt_it_viob42 | |
| ET_MSG | = lt_et_msg | |
| IT_VIEIGE | = lt_it_vieige | |
| IT_VIOB04 | = lt_it_viob04 | |
| IT_VIOB05 | = lt_it_viob05 | |
| IT_VIOB20 | = lt_it_viob20 | |
| IT_VIOB37 | = lt_it_viob37 | |
| IT_VIOB38 | = lt_it_viob38 | |
| IT_VIOB39 | = lt_it_viob39 | |
| IT_AREA | = lt_it_area | |
| . " SAMPLE_PROCESS_00700310 | ||
ABAP code using 7.40 inline data declarations to call FM SAMPLE_PROCESS_00700310
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