SAP SAMPLE_PROCESS_00700210 Function Module for Interface Description for Process 00700210









SAMPLE_PROCESS_00700210 is a standard sample process 00700210 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 00700210 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 00700210 FM, simply by entering the name SAMPLE_PROCESS_00700210 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_00700210 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_00700210'"Interface Description for Process 00700210
EXPORTING
I_VIOB01 = "
I_VIOB02 = "
I_SANO1 = "
I_VZSORT = "
I_AKTYP = "

TABLES
IT_VZGPO = "
ET_MSG = "
IT_VIEIGE = "
IT_VIOB06 = "
IT_VIOB35 = "
IT_VIOB37 = "
IT_VIOB38 = "
IT_VIOB39 = "
IT_AREA = "
IT_VIOB42 = "
.



IMPORTING Parameters details for SAMPLE_PROCESS_00700210

I_VIOB01 -

Data type: VIOB01
Optional: No
Call by Reference: Yes

I_VIOB02 -

Data type: VIOB02
Optional: No
Call by Reference: Yes

I_SANO1 -

Data type: SANO1
Optional: No
Call by Reference: Yes

I_VZSORT -

Data type: VZSORT
Optional: No
Call by Reference: Yes

I_AKTYP -

Data type: BU_AKTYP
Optional: No
Call by Reference: Yes

TABLES Parameters details for SAMPLE_PROCESS_00700210

IT_VZGPO -

Data type: VZGPO
Optional: No
Call by Reference: No ( called with pass by value option)

ET_MSG -

Data type: SYMSG
Optional: No
Call by Reference: No ( called with pass by value option)

IT_VIEIGE -

Data type: VIEIGE
Optional: No
Call by Reference: No ( called with pass by value option)

IT_VIOB06 -

Data type: VIOB06
Optional: No
Call by Reference: No ( called with pass by value option)

IT_VIOB35 -

Data type: VIOB35
Optional: No
Call by Reference: No ( called with pass by value option)

IT_VIOB37 -

Data type: VIOB37
Optional: No
Call by Reference: No ( called with pass by value option)

IT_VIOB38 -

Data type: VIOB38
Optional: No
Call by Reference: No ( called with pass by value option)

IT_VIOB39 -

Data type: VIOB39
Optional: No
Call by Reference: No ( called with pass by value option)

IT_AREA -

Data type: VIOB41
Optional: No
Call by Reference: No ( called with pass by value option)

IT_VIOB42 -

Data type: VIOB42
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for SAMPLE_PROCESS_00700210 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_et_msg  TYPE STANDARD TABLE OF SYMSG, "   
lv_i_viob02  TYPE VIOB02, "   
lt_it_vieige  TYPE STANDARD TABLE OF VIEIGE, "   
lv_i_sano1  TYPE SANO1, "   
lt_it_viob06  TYPE STANDARD TABLE OF VIOB06, "   
lv_i_vzsort  TYPE VZSORT, "   
lt_it_viob35  TYPE STANDARD TABLE OF VIOB35, "   
lv_i_aktyp  TYPE BU_AKTYP, "   
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, "   
lt_it_viob42  TYPE STANDARD TABLE OF VIOB42. "   

  CALL FUNCTION 'SAMPLE_PROCESS_00700210'  "Interface Description for Process 00700210
    EXPORTING
         I_VIOB01 = lv_i_viob01
         I_VIOB02 = lv_i_viob02
         I_SANO1 = lv_i_sano1
         I_VZSORT = lv_i_vzsort
         I_AKTYP = lv_i_aktyp
    TABLES
         IT_VZGPO = lt_it_vzgpo
         ET_MSG = lt_et_msg
         IT_VIEIGE = lt_it_vieige
         IT_VIOB06 = lt_it_viob06
         IT_VIOB35 = lt_it_viob35
         IT_VIOB37 = lt_it_viob37
         IT_VIOB38 = lt_it_viob38
         IT_VIOB39 = lt_it_viob39
         IT_AREA = lt_it_area
         IT_VIOB42 = lt_it_viob42
. " SAMPLE_PROCESS_00700210




ABAP code using 7.40 inline data declarations to call FM SAMPLE_PROCESS_00700210

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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!