SAP EXIT_SAPLVIMP_001 Function Module for User exit for import simulation default









EXIT_SAPLVIMP_001 is a standard exit saplvimp 001 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for User exit for import simulation default 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 exit saplvimp 001 FM, simply by entering the name EXIT_SAPLVIMP_001 into the relevant SAP transaction such as SE37 or SE38.

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



Function EXIT_SAPLVIMP_001 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 'EXIT_SAPLVIMP_001'"User exit for import simulation default
EXPORTING
I_COMM_HEAD = "
I_COMM_ITEM = "
I_CALL_MODE = "

IMPORTING
E_COMM_HEAD = "
E_COMM_ITEM = "

TABLES
TKOMV = "
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
FT_IMPORT_ANTIDUMP NOTRANSL: Außenhandel: Importabwicklung Zoll - Antidumping
FT_IMPORT_CONTROL NOTRANSL: Außenhandel: Importabwicklung Zoll - Steuerungsbaustein
FT_IMPORT_DOCUMENTS NOTRANSL: Außenhandel: Importabwicklung - Dokumente ermitteln
FT_IMPORT_DOCUMENT_PROCESSING NOTRANSL: Außenhandel: Importabwicklung für Belegverarbeitung
FT_IMPORT_DOCUMENT_PROC_PREP NOTRANSL: Außenhandel: Importabwicklung Belegverarbeitung vorbereiten
FT_IMPORT_DRITTLZOLL NOTRANSL: Außenhandel: Importabwicklung Zoll - Drittlandszollsatz
FT_IMPORT_KONTINGENT NOTRANSL: Außenhandel: Importabwicklung Zoll - Kontingent-Situation prüfen
FT_IMPORT_NACHWEIS NOTRANSL: Außenhandel: Importabwicklung Zoll - Nachweisfindung
FT_IMPORT_PHARMA NOTRANSL: Außenhandel: Importabwicklung Zoll - Pharmazeutische Erzeugnisse
FT_IMPORT_PLAFONDS NOTRANSL: Außenhandel: Importabwicklung Zoll - Plafonds
FT_IMPORT_PRAEFERENZ NOTRANSL: Außenhandel: Importabwicklung Zoll - Präferenzzoll
FT_IMPORT_PRICING_DISPLAY NOTRANSL: Außenhandel: Importabwicklung Anzeigen der Ergebnisse aus der Pr
FT_IMPORT_PRICING_PREPARE NOTRANSL: Außenhandel: Importabwicklung Preisfindung vorbereiten
FT_IMPORT_PROCESSING Foreign Trade: Import Processing
FT_IMPORT_PROCESSING_OUTPUT NOTRANSL: Außenhandel: Importabwicklung Zoll Ausgabe
FT_IMPORT_PROTOKOLL_ADD NOTRANSL: Außenhandel: Importabwicklung Protokollsatz hinzufügen
FT_IMPORT_PROTOKOLL_DISPLAY NOTRANSL: Außenhandel: Importabwicklung Protokolldatei ausgeben
FT_IMPORT_PROTOKOLL_INIT NOTRANSL: Außenhandel: Importabwicklung Protokolldatei initialisieren
FT_IMPORT_ZOLLAUSS NOTRANSL: Außenhandel: Importabwicklung Zoll - Zollaussetzung
FT_IMP_EXP_ASCERTAIN_DIRECTION NOTRANSL: Ermitteln der Warenrichtung einer Stat.Warennummer/Import-Codenu
FT_IMP_EXP_COMMODITY_CODE_HELP NOTRANSL: Außenhandel: Importabwicklung: F4-Hilfe für Stat. Warennr. / Imp
FT_IMP_EXP_PROCEDURE_INTERPRET NOTRANSL: Außenhandel: Export/Import Verfahren interpretieren

IMPORTING Parameters details for EXIT_SAPLVIMP_001

I_COMM_HEAD -

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

I_COMM_ITEM -

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

I_CALL_MODE -

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

EXPORTING Parameters details for EXIT_SAPLVIMP_001

E_COMM_HEAD -

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

E_COMM_ITEM -

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

TABLES Parameters details for EXIT_SAPLVIMP_001

TKOMV -

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

Copy and paste ABAP code example for EXIT_SAPLVIMP_001 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_tkomv  TYPE STANDARD TABLE OF KOMV, "   
lv_e_comm_head  TYPE KOMK, "   
lv_i_comm_head  TYPE KOMK, "   
lv_e_comm_item  TYPE KOMP, "   
lv_i_comm_item  TYPE KOMP, "   
lv_i_call_mode  TYPE C. "   

  CALL FUNCTION 'EXIT_SAPLVIMP_001'  "User exit for import simulation default
    EXPORTING
         I_COMM_HEAD = lv_i_comm_head
         I_COMM_ITEM = lv_i_comm_item
         I_CALL_MODE = lv_i_call_mode
    IMPORTING
         E_COMM_HEAD = lv_e_comm_head
         E_COMM_ITEM = lv_e_comm_item
    TABLES
         TKOMV = lt_tkomv
. " EXIT_SAPLVIMP_001




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLVIMP_001

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!