SAP RV_EXPORT_CONTROL_BACKLOG Function Module for NOTRANSL: Gesetzliche Kontrolle: Ausfuhrkontrolle für mehrere Belege - Bac









RV_EXPORT_CONTROL_BACKLOG is a standard rv export control backlog 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: Gesetzliche Kontrolle: Ausfuhrkontrolle für mehrere Belege - Bac 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 rv export control backlog FM, simply by entering the name RV_EXPORT_CONTROL_BACKLOG into the relevant SAP transaction such as SE37 or SE38.

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



Function RV_EXPORT_CONTROL_BACKLOG 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 'RV_EXPORT_CONTROL_BACKLOG'"NOTRANSL: Gesetzliche Kontrolle: Ausfuhrkontrolle für mehrere Belege - Bac
EXPORTING
I_BASE_DOCUMENT = "Kennzeichen : Basisbeleg
* I_SIMULATION = ' ' "Kennzeichen : Simulationsmodus
* I_PROT_ACTIVE = 'X' "Kennzeichen : Protokoll ausgeben beim Sichern
* I_LOG_LEVEL = ' ' "Kennzeichen : Ebene des zu sichernden Protok.

TABLES
* I_T_VBAK = "Tabelle: Verkaufsbeleg: Kopfdaten
* I_T_VBAP = "Tabelle: Verkaufsbeleg: Positionsdaten
* I_T_VBKD = "Tabelle: Verkaufsbeleg: Kaufmännische Daten
* I_T_VBEP = "Tabelle: Verkaufsbeleg: Einteilungen
* I_T_LIKP = "Tabelle: Lieferbeleg : Kopfdaten
* I_T_LIPS = "Tabelle: Lieferbeleg : Positionsdaten
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLV52E_001 SD Legal Control: User exit for additional license checks

IMPORTING Parameters details for RV_EXPORT_CONTROL_BACKLOG

I_BASE_DOCUMENT - Kennzeichen : Basisbeleg

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

I_SIMULATION - Kennzeichen : Simulationsmodus

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

I_PROT_ACTIVE - Kennzeichen : Protokoll ausgeben beim Sichern

Data type: TVAK-EXDIA
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_LOG_LEVEL - Kennzeichen : Ebene des zu sichernden Protok.

Data type: TVAK-EXCLG
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for RV_EXPORT_CONTROL_BACKLOG

I_T_VBAK - Tabelle: Verkaufsbeleg: Kopfdaten

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

I_T_VBAP - Tabelle: Verkaufsbeleg: Positionsdaten

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

I_T_VBKD - Tabelle: Verkaufsbeleg: Kaufmännische Daten

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

I_T_VBEP - Tabelle: Verkaufsbeleg: Einteilungen

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

I_T_LIKP - Tabelle: Lieferbeleg : Kopfdaten

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

I_T_LIPS - Tabelle: Lieferbeleg : Positionsdaten

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

Copy and paste ABAP code example for RV_EXPORT_CONTROL_BACKLOG 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_i_t_vbak  TYPE STANDARD TABLE OF VBAK, "   
lv_i_base_document  TYPE EIKP-AHBAS, "   
lt_i_t_vbap  TYPE STANDARD TABLE OF VBAP, "   
lv_i_simulation  TYPE C, "   ' '
lt_i_t_vbkd  TYPE STANDARD TABLE OF VBKD, "   
lv_i_prot_active  TYPE TVAK-EXDIA, "   'X'
lt_i_t_vbep  TYPE STANDARD TABLE OF VBEP, "   
lv_i_log_level  TYPE TVAK-EXCLG, "   ' '
lt_i_t_likp  TYPE STANDARD TABLE OF LIKP, "   
lt_i_t_lips  TYPE STANDARD TABLE OF LIPS. "   

  CALL FUNCTION 'RV_EXPORT_CONTROL_BACKLOG'  "NOTRANSL: Gesetzliche Kontrolle: Ausfuhrkontrolle für mehrere Belege - Bac
    EXPORTING
         I_BASE_DOCUMENT = lv_i_base_document
         I_SIMULATION = lv_i_simulation
         I_PROT_ACTIVE = lv_i_prot_active
         I_LOG_LEVEL = lv_i_log_level
    TABLES
         I_T_VBAK = lt_i_t_vbak
         I_T_VBAP = lt_i_t_vbap
         I_T_VBKD = lt_i_t_vbkd
         I_T_VBEP = lt_i_t_vbep
         I_T_LIKP = lt_i_t_likp
         I_T_LIPS = lt_i_t_lips
. " RV_EXPORT_CONTROL_BACKLOG




ABAP code using 7.40 inline data declarations to call FM RV_EXPORT_CONTROL_BACKLOG

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 AHBAS FROM EIKP INTO @DATA(ld_i_base_document).
 
 
DATA(ld_i_simulation) = ' '.
 
 
"SELECT single EXDIA FROM TVAK INTO @DATA(ld_i_prot_active).
DATA(ld_i_prot_active) = 'X'.
 
 
"SELECT single EXCLG FROM TVAK INTO @DATA(ld_i_log_level).
DATA(ld_i_log_level) = ' '.
 
 
 


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!