SAP FVAK_EXPORT_DATA Function Module for









FVAK_EXPORT_DATA is a standard fvak export data 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 fvak export data FM, simply by entering the name FVAK_EXPORT_DATA into the relevant SAP transaction such as SE37 or SE38.

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



Function FVAK_EXPORT_DATA 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 'FVAK_EXPORT_DATA'"
IMPORTING
E_OK_CODE_PROCESSED = "
E_SICHERN_0600 = "
E_ABBRUCH_PRUEFLAUF = "
E_COMPUTE_BKOND = "
E_CURSOR_LINE = "
E_CURSOR_FIELD = "

TABLES
E_T_XVIOB40 = "
E_T_XVIOB41 = "
E_T_YVIOB40 = "
E_T_YVIOB41 = "
.



EXPORTING Parameters details for FVAK_EXPORT_DATA

E_OK_CODE_PROCESSED -

Data type:
Optional: No
Call by Reference: Yes

E_SICHERN_0600 -

Data type:
Optional: No
Call by Reference: Yes

E_ABBRUCH_PRUEFLAUF -

Data type:
Optional: No
Call by Reference: Yes

E_COMPUTE_BKOND -

Data type:
Optional: No
Call by Reference: Yes

E_CURSOR_LINE -

Data type: SY-STEPL
Optional: No
Call by Reference: Yes

E_CURSOR_FIELD -

Data type:
Optional: No
Call by Reference: Yes

TABLES Parameters details for FVAK_EXPORT_DATA

E_T_XVIOB40 -

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

E_T_XVIOB41 -

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

E_T_YVIOB40 -

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

E_T_YVIOB41 -

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

Copy and paste ABAP code example for FVAK_EXPORT_DATA 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_e_t_xviob40  TYPE STANDARD TABLE OF AVIOB40, "   
lv_e_ok_code_processed  TYPE AVIOB40, "   
lt_e_t_xviob41  TYPE STANDARD TABLE OF AVIOB41, "   
lv_e_sichern_0600  TYPE AVIOB41, "   
lt_e_t_yviob40  TYPE STANDARD TABLE OF AVIOB40, "   
lv_e_abbruch_prueflauf  TYPE AVIOB40, "   
lt_e_t_yviob41  TYPE STANDARD TABLE OF AVIOB41, "   
lv_e_compute_bkond  TYPE AVIOB41, "   
lv_e_cursor_line  TYPE SY-STEPL, "   
lv_e_cursor_field  TYPE SY. "   

  CALL FUNCTION 'FVAK_EXPORT_DATA'  "
    IMPORTING
         E_OK_CODE_PROCESSED = lv_e_ok_code_processed
         E_SICHERN_0600 = lv_e_sichern_0600
         E_ABBRUCH_PRUEFLAUF = lv_e_abbruch_prueflauf
         E_COMPUTE_BKOND = lv_e_compute_bkond
         E_CURSOR_LINE = lv_e_cursor_line
         E_CURSOR_FIELD = lv_e_cursor_field
    TABLES
         E_T_XVIOB40 = lt_e_t_xviob40
         E_T_XVIOB41 = lt_e_t_xviob41
         E_T_YVIOB40 = lt_e_t_yviob40
         E_T_YVIOB41 = lt_e_t_yviob41
. " FVAK_EXPORT_DATA




ABAP code using 7.40 inline data declarations to call FM FVAK_EXPORT_DATA

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 STEPL FROM SY INTO @DATA(ld_e_cursor_line).
 
 


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!