SAP SAMPLE_PROCESS_00503101 Function Module for NOTRANSL: Schnittstellenbeschreibung zum Prozess 00503101









SAMPLE_PROCESS_00503101 is a standard sample process 00503101 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Schnittstellenbeschreibung zum Prozess 00503101 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 00503101 FM, simply by entering the name SAMPLE_PROCESS_00503101 into the relevant SAP transaction such as SE37 or SE38.

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



Function SAMPLE_PROCESS_00503101 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_00503101'"NOTRANSL: Schnittstellenbeschreibung zum Prozess 00503101
EXPORTING
FIF_VORGANG = "
FIS_TVAK = "Sales document type
FIS_XVBAK = "
FIS_YVBAK = "
FIF_XVBAK_UPDKZ = "
FIF_YVBAK_UPDKZ = "
FIS_T001 = "Company Code
FIS_KOMK = "
FIF_KONV_GEAENDERT = "
FIS_XVBUK = "

IMPORTING
FEF_NO_ACTIVATE = "

TABLES
FIT_XVBAP = "
FIT_XVBUP = "
FIT_XVBPA = "
FIT_XVBEP = "
FIT_YVBAP = "
FIT_XKOMV = "
FIT_XVBKD = "
FIT_YVBKD = "
FIT_XFPLA = "
FIT_XFPLT = "
FIT_YFPLT = "
FIT_XKOMP = "
.



IMPORTING Parameters details for SAMPLE_PROCESS_00503101

FIF_VORGANG -

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

FIS_TVAK - Sales document type

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

FIS_XVBAK -

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

FIS_YVBAK -

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

FIF_XVBAK_UPDKZ -

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

FIF_YVBAK_UPDKZ -

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

FIS_T001 - Company Code

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

FIS_KOMK -

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

FIF_KONV_GEAENDERT -

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

FIS_XVBUK -

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

EXPORTING Parameters details for SAMPLE_PROCESS_00503101

FEF_NO_ACTIVATE -

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

TABLES Parameters details for SAMPLE_PROCESS_00503101

FIT_XVBAP -

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

FIT_XVBUP -

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

FIT_XVBPA -

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

FIT_XVBEP -

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

FIT_YVBAP -

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

FIT_XKOMV -

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

FIT_XVBKD -

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

FIT_YVBKD -

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

FIT_XFPLA -

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

FIT_XFPLT -

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

FIT_YFPLT -

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

FIT_XKOMP -

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

Copy and paste ABAP code example for SAMPLE_PROCESS_00503101 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_fit_xvbap  TYPE STANDARD TABLE OF VBAPVB, "   
lv_fif_vorgang  TYPE VBAPVB, "   
lv_fef_no_activate  TYPE VBAPVB, "   
lv_fis_tvak  TYPE TVAK, "   
lt_fit_xvbup  TYPE STANDARD TABLE OF VBUPVB, "   
lt_fit_xvbpa  TYPE STANDARD TABLE OF VBPAVB, "   
lt_fit_xvbep  TYPE STANDARD TABLE OF VBEPVB, "   
lv_fis_xvbak  TYPE VBAK, "   
lt_fit_yvbap  TYPE STANDARD TABLE OF VBAPVB, "   
lv_fis_yvbak  TYPE VBAK, "   
lt_fit_xkomv  TYPE STANDARD TABLE OF KOMV, "   
lt_fit_xvbkd  TYPE STANDARD TABLE OF VBKDVB, "   
lv_fif_xvbak_updkz  TYPE VBKDVB, "   
lt_fit_yvbkd  TYPE STANDARD TABLE OF VBKDVB, "   
lv_fif_yvbak_updkz  TYPE VBKDVB, "   
lv_fis_t001  TYPE T001, "   
lt_fit_xfpla  TYPE STANDARD TABLE OF FPLAVB, "   
lv_fis_komk  TYPE KOMK, "   
lt_fit_xfplt  TYPE STANDARD TABLE OF FPLTVB, "   
lt_fit_yfplt  TYPE STANDARD TABLE OF FPLTVB, "   
lv_fif_konv_geaendert  TYPE FPLTVB, "   
lv_fis_xvbuk  TYPE VBUKVB, "   
lt_fit_xkomp  TYPE STANDARD TABLE OF KOMP. "   

  CALL FUNCTION 'SAMPLE_PROCESS_00503101'  "NOTRANSL: Schnittstellenbeschreibung zum Prozess 00503101
    EXPORTING
         FIF_VORGANG = lv_fif_vorgang
         FIS_TVAK = lv_fis_tvak
         FIS_XVBAK = lv_fis_xvbak
         FIS_YVBAK = lv_fis_yvbak
         FIF_XVBAK_UPDKZ = lv_fif_xvbak_updkz
         FIF_YVBAK_UPDKZ = lv_fif_yvbak_updkz
         FIS_T001 = lv_fis_t001
         FIS_KOMK = lv_fis_komk
         FIF_KONV_GEAENDERT = lv_fif_konv_geaendert
         FIS_XVBUK = lv_fis_xvbuk
    IMPORTING
         FEF_NO_ACTIVATE = lv_fef_no_activate
    TABLES
         FIT_XVBAP = lt_fit_xvbap
         FIT_XVBUP = lt_fit_xvbup
         FIT_XVBPA = lt_fit_xvbpa
         FIT_XVBEP = lt_fit_xvbep
         FIT_YVBAP = lt_fit_yvbap
         FIT_XKOMV = lt_fit_xkomv
         FIT_XVBKD = lt_fit_xvbkd
         FIT_YVBKD = lt_fit_yvbkd
         FIT_XFPLA = lt_fit_xfpla
         FIT_XFPLT = lt_fit_xfplt
         FIT_YFPLT = lt_fit_yfplt
         FIT_XKOMP = lt_fit_xkomp
. " SAMPLE_PROCESS_00503101




ABAP code using 7.40 inline data declarations to call FM SAMPLE_PROCESS_00503101

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!