SAP SAMPLE_PROCESS_00700171 Function Module for Interface definition for event 00700171









SAMPLE_PROCESS_00700171 is a standard sample process 00700171 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 definition for event 00700171 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 00700171 FM, simply by entering the name SAMPLE_PROCESS_00700171 into the relevant SAP transaction such as SE37 or SE38.

Function Group: FVBTESMPL
Program Name: SAPLFVBTESMPL
Main Program:
Appliation area: A
Release date: 01-Jul-1999
Mode(Normal, Remote etc): Normal Function Module
Update:



Function SAMPLE_PROCESS_00700171 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_00700171'"Interface definition for event 00700171
EXPORTING
I_VIOB03 = "
* I_T_VIOB37 = "
* I_T_VIEIGE = "
* I_T_VZGPO = "
* I_T_VIOB27 = "
* I_T_VIOB04 = "
* I_T_VIOB40 = "
* I_T_VIOB41 = "
* I_T_VIOB20 = "
* I_T_VIOB05 = "
.



IMPORTING Parameters details for SAMPLE_PROCESS_00700171

I_VIOB03 -

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

I_T_VIOB37 -

Data type: RE_T_VIOB37
Optional: Yes
Call by Reference: Yes

I_T_VIEIGE -

Data type: RE_T_VIEIGE
Optional: Yes
Call by Reference: Yes

I_T_VZGPO -

Data type: RE_T_VZGPO
Optional: Yes
Call by Reference: Yes

I_T_VIOB27 -

Data type: RE_T_VIOB27
Optional: Yes
Call by Reference: Yes

I_T_VIOB04 -

Data type: RE_T_VIOB04
Optional: Yes
Call by Reference: Yes

I_T_VIOB40 -

Data type: RE_T_VIOB40
Optional: Yes
Call by Reference: Yes

I_T_VIOB41 -

Data type: RE_T_VIOB41
Optional: Yes
Call by Reference: Yes

I_T_VIOB20 -

Data type: RE_T_VIOB20
Optional: Yes
Call by Reference: Yes

I_T_VIOB05 -

Data type: RE_T_VIOB05
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for SAMPLE_PROCESS_00700171 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_i_viob03  TYPE VIOB03, "   
lv_i_t_viob37  TYPE RE_T_VIOB37, "   
lv_i_t_vieige  TYPE RE_T_VIEIGE, "   
lv_i_t_vzgpo  TYPE RE_T_VZGPO, "   
lv_i_t_viob27  TYPE RE_T_VIOB27, "   
lv_i_t_viob04  TYPE RE_T_VIOB04, "   
lv_i_t_viob40  TYPE RE_T_VIOB40, "   
lv_i_t_viob41  TYPE RE_T_VIOB41, "   
lv_i_t_viob20  TYPE RE_T_VIOB20, "   
lv_i_t_viob05  TYPE RE_T_VIOB05. "   

  CALL FUNCTION 'SAMPLE_PROCESS_00700171'  "Interface definition for event 00700171
    EXPORTING
         I_VIOB03 = lv_i_viob03
         I_T_VIOB37 = lv_i_t_viob37
         I_T_VIEIGE = lv_i_t_vieige
         I_T_VZGPO = lv_i_t_vzgpo
         I_T_VIOB27 = lv_i_t_viob27
         I_T_VIOB04 = lv_i_t_viob04
         I_T_VIOB40 = lv_i_t_viob40
         I_T_VIOB41 = lv_i_t_viob41
         I_T_VIOB20 = lv_i_t_viob20
         I_T_VIOB05 = lv_i_t_viob05
. " SAMPLE_PROCESS_00700171




ABAP code using 7.40 inline data declarations to call FM SAMPLE_PROCESS_00700171

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!