SAP SAMPLE_PROCESS_00001710 Function Module for Beschreibung der Prozess-Schnittstelle 00001710









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

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



Function SAMPLE_PROCESS_00001710 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_00001710'"Beschreibung der Prozess-Schnittstelle 00001710
CHANGING
E_CCEXD_H = "Zusatzdaten (Kopf)

TABLES
* T_XKOMV = "Konditionen/Preise
* T_XVBPA = "Partnerdaten
* T_XVBRK = "Fakturakopf
* T_XVBRP = "Fakturapositionen
T_CCEXD_I = "Zusatzdaten (Positionen)
.



CHANGING Parameters details for SAMPLE_PROCESS_00001710

E_CCEXD_H - Zusatzdaten (Kopf)

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

TABLES Parameters details for SAMPLE_PROCESS_00001710

T_XKOMV - Konditionen/Preise

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

T_XVBPA - Partnerdaten

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

T_XVBRK - Fakturakopf

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

T_XVBRP - Fakturapositionen

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

T_CCEXD_I - Zusatzdaten (Positionen)

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

Copy and paste ABAP code example for SAMPLE_PROCESS_00001710 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_t_xkomv  TYPE STANDARD TABLE OF KOMV, "   
lv_e_ccexd_h  TYPE CCEXD_H, "   
lt_t_xvbpa  TYPE STANDARD TABLE OF VBPAVB, "   
lt_t_xvbrk  TYPE STANDARD TABLE OF VBRKVB, "   
lt_t_xvbrp  TYPE STANDARD TABLE OF VBRPVB, "   
lt_t_ccexd_i  TYPE STANDARD TABLE OF CCEXD_I. "   

  CALL FUNCTION 'SAMPLE_PROCESS_00001710'  "Beschreibung der Prozess-Schnittstelle 00001710
    CHANGING
         E_CCEXD_H = lv_e_ccexd_h
    TABLES
         T_XKOMV = lt_t_xkomv
         T_XVBPA = lt_t_xvbpa
         T_XVBRK = lt_t_xvbrk
         T_XVBRP = lt_t_xvbrp
         T_CCEXD_I = lt_t_ccexd_i
. " SAMPLE_PROCESS_00001710




ABAP code using 7.40 inline data declarations to call FM SAMPLE_PROCESS_00001710

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!