SAP SAMPLE_FCTMODULE_DE_EIOUV Function Module for NOTRANSL: Schnittstelle für open FI Event DE_EIOUV









SAMPLE_FCTMODULE_DE_EIOUV is a standard sample fctmodule de eiouv 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: Schnittstelle für open FI Event DE_EIOUV 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 fctmodule de eiouv FM, simply by entering the name SAMPLE_FCTMODULE_DE_EIOUV into the relevant SAP transaction such as SE37 or SE38.

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



Function SAMPLE_FCTMODULE_DE_EIOUV 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_FCTMODULE_DE_EIOUV'"NOTRANSL: Schnittstelle für open FI Event DE_EIOUV
EXPORTING
IV_VENDOR = "Account Number of Vendor or Creditor
IV_DELTA_DOWNLOAD = "

CHANGING
CT_MAIN_EXTERN = "

TABLES
CT_BAPIMTCS = "
IT_YLFAS = "
IT_XLFAT = "
IT_YLFAT = "
IT_XLFBK = "
IT_YLFBK = "
IT_XLFB5 = "
IT_YLFB5 = "
IT_XLFBW = "
IT_YLFBW = "
IT_CRMLIFNR = "
IT_XLFA1 = "
IT_YLFA1 = "
IT_XLFB1 = "Vendor Master (Company Code)
IT_YLFB1 = "Vendor Master (Company Code)
IT_XLFM1 = "
IT_YLFM1 = "
IT_XLFAS = "
.



IMPORTING Parameters details for SAMPLE_FCTMODULE_DE_EIOUV

IV_VENDOR - Account Number of Vendor or Creditor

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

IV_DELTA_DOWNLOAD -

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

CHANGING Parameters details for SAMPLE_FCTMODULE_DE_EIOUV

CT_MAIN_EXTERN -

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

TABLES Parameters details for SAMPLE_FCTMODULE_DE_EIOUV

CT_BAPIMTCS -

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

IT_YLFAS -

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

IT_XLFAT -

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

IT_YLFAT -

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

IT_XLFBK -

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

IT_YLFBK -

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

IT_XLFB5 -

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

IT_YLFB5 -

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

IT_XLFBW -

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

IT_YLFBW -

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

IT_CRMLIFNR -

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

IT_XLFA1 -

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

IT_YLFA1 -

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

IT_XLFB1 - Vendor Master (Company Code)

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

IT_YLFB1 - Vendor Master (Company Code)

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

IT_XLFM1 -

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

IT_YLFM1 -

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

IT_XLFAS -

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

Copy and paste ABAP code example for SAMPLE_FCTMODULE_DE_EIOUV 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_iv_vendor  TYPE LFA1-LIFNR, "   
lt_ct_bapimtcs  TYPE STANDARD TABLE OF BAPIMTCS, "   
lv_ct_main_extern  TYPE BUSEI_COM_EXTERN_T, "   
lt_it_ylfas  TYPE STANDARD TABLE OF LFAS, "   
lt_it_xlfat  TYPE STANDARD TABLE OF LFAT, "   
lt_it_ylfat  TYPE STANDARD TABLE OF LFAT, "   
lt_it_xlfbk  TYPE STANDARD TABLE OF LFBK, "   
lt_it_ylfbk  TYPE STANDARD TABLE OF LFBK, "   
lt_it_xlfb5  TYPE STANDARD TABLE OF LFB5, "   
lt_it_ylfb5  TYPE STANDARD TABLE OF LFB5, "   
lt_it_xlfbw  TYPE STANDARD TABLE OF LFBW, "   
lt_it_ylfbw  TYPE STANDARD TABLE OF LFBW, "   
lt_it_crmlifnr  TYPE STANDARD TABLE OF CRMLIFNR, "   
lv_iv_delta_download  TYPE C, "   
lt_it_xlfa1  TYPE STANDARD TABLE OF LFA1, "   
lt_it_ylfa1  TYPE STANDARD TABLE OF LFA1, "   
lt_it_xlfb1  TYPE STANDARD TABLE OF LFB1, "   
lt_it_ylfb1  TYPE STANDARD TABLE OF LFB1, "   
lt_it_xlfm1  TYPE STANDARD TABLE OF LFM1, "   
lt_it_ylfm1  TYPE STANDARD TABLE OF LFM1, "   
lt_it_xlfas  TYPE STANDARD TABLE OF LFAS. "   

  CALL FUNCTION 'SAMPLE_FCTMODULE_DE_EIOUV'  "NOTRANSL: Schnittstelle für open FI Event DE_EIOUV
    EXPORTING
         IV_VENDOR = lv_iv_vendor
         IV_DELTA_DOWNLOAD = lv_iv_delta_download
    CHANGING
         CT_MAIN_EXTERN = lv_ct_main_extern
    TABLES
         CT_BAPIMTCS = lt_ct_bapimtcs
         IT_YLFAS = lt_it_ylfas
         IT_XLFAT = lt_it_xlfat
         IT_YLFAT = lt_it_ylfat
         IT_XLFBK = lt_it_xlfbk
         IT_YLFBK = lt_it_ylfbk
         IT_XLFB5 = lt_it_xlfb5
         IT_YLFB5 = lt_it_ylfb5
         IT_XLFBW = lt_it_xlfbw
         IT_YLFBW = lt_it_ylfbw
         IT_CRMLIFNR = lt_it_crmlifnr
         IT_XLFA1 = lt_it_xlfa1
         IT_YLFA1 = lt_it_ylfa1
         IT_XLFB1 = lt_it_xlfb1
         IT_YLFB1 = lt_it_ylfb1
         IT_XLFM1 = lt_it_xlfm1
         IT_YLFM1 = lt_it_ylfm1
         IT_XLFAS = lt_it_xlfas
. " SAMPLE_FCTMODULE_DE_EIOUV




ABAP code using 7.40 inline data declarations to call FM SAMPLE_FCTMODULE_DE_EIOUV

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.

"SELECT single LIFNR FROM LFA1 INTO @DATA(ld_iv_vendor).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


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!