SAP SAMPLE_PROCESS_00705002 Function Module for









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

Function Group: FVBTESMPL
Program Name: SAPLFVBTESMPL
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function SAMPLE_PROCESS_00705002 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_00705002'"
EXPORTING
IS_VIMIIH = "
IS_INVPARAMS = "
* IC_LANGU = SY-LANGU "

IMPORTING
ES_VIMIIP_SUM = "
EB_TAX_EXISTS = "

TABLES
IT_VIMIIP = "
* IT_VIMI01 = "
* IT_VIMIMV = "
ET_VIMIIP_ZS = "
.



IMPORTING Parameters details for SAMPLE_PROCESS_00705002

IS_VIMIIH -

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

IS_INVPARAMS -

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

IC_LANGU -

Data type: SYLANGU
Default: SY-LANGU
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for SAMPLE_PROCESS_00705002

ES_VIMIIP_SUM -

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

EB_TAX_EXISTS -

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

TABLES Parameters details for SAMPLE_PROCESS_00705002

IT_VIMIIP -

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

IT_VIMI01 -

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

IT_VIMIMV -

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

ET_VIMIIP_ZS -

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

Copy and paste ABAP code example for SAMPLE_PROCESS_00705002 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_is_vimiih  TYPE VIMIIH, "   
lt_it_vimiip  TYPE STANDARD TABLE OF VIMIIP, "   
lv_es_vimiip_sum  TYPE VIMIIP_SUM, "   
lt_it_vimi01  TYPE STANDARD TABLE OF VIMI01, "   
lv_is_invparams  TYPE RFVICPINSC, "   
lv_eb_tax_exists  TYPE XFELD, "   
lv_ic_langu  TYPE SYLANGU, "   SY-LANGU
lt_it_vimimv  TYPE STANDARD TABLE OF VIMIMV, "   
lt_et_vimiip_zs  TYPE STANDARD TABLE OF VIMIIP_ZS. "   

  CALL FUNCTION 'SAMPLE_PROCESS_00705002'  "
    EXPORTING
         IS_VIMIIH = lv_is_vimiih
         IS_INVPARAMS = lv_is_invparams
         IC_LANGU = lv_ic_langu
    IMPORTING
         ES_VIMIIP_SUM = lv_es_vimiip_sum
         EB_TAX_EXISTS = lv_eb_tax_exists
    TABLES
         IT_VIMIIP = lt_it_vimiip
         IT_VIMI01 = lt_it_vimi01
         IT_VIMIMV = lt_it_vimimv
         ET_VIMIIP_ZS = lt_et_vimiip_zs
. " SAMPLE_PROCESS_00705002




ABAP code using 7.40 inline data declarations to call FM SAMPLE_PROCESS_00705002

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_ic_langu) = SY-LANGU.
 
 
 


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!