SAP EXIT_SAPLV60P_019 Function Module for DE-EN-LANG-SWITCH-NO-TRANSLATION









EXIT_SAPLV60P_019 is a standard exit saplv60p 019 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for DE-EN-LANG-SWITCH-NO-TRANSLATION 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 saplv60p 019 FM, simply by entering the name EXIT_SAPLV60P_019 into the relevant SAP transaction such as SE37 or SE38.

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



Function EXIT_SAPLV60P_019 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_SAPLV60P_019'"DE-EN-LANG-SWITCH-NO-TRANSLATION
TABLES
CT_VKDFIF = "Billing Index
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
BILLINGDOC_SPLIT_ANALYZE NOTRANSL: Analyse der Splitkriterien paarweiser Fakturen
BILLING_GET_DELIVERIES_AIP NOTRANSL: Lieferdaten holen
GNVKDFS_ALV_DISPLAY NOTRANSL: Fehlerprotokoll - Anzeige
GN_COLLECTIVE_RUN_EXECUTE NOTRANSL: Fakturasammellauf durchführen
ITEM_BILLING_STATUS_GET NOTRANSL: FAKTURASTATUS EINER EXTERNEN POSITION ERMITTELN
RV_INVOICE_GET_ITEM_SELECT_P Get Parameter für Positionsauswahl
RV_VBRP_PSTYV_DETERMINE Determine and check the item categories during delivery processing
SD_BILLING_DOCUMENT_DETERMINE NOTRANSL: Fehlerprotokoll - Anzeige
SD_COLLECTIVE_RUN_CANCELLATION NOTRANSL: Stornierung eines Faktura-Sammellaufes
SD_COLLECTIVE_RUN_EXECUTE NOTRANSL: Fakturasammellauf durchführen
SD_COLL_SHLP_EXIT_VMCF NOTRANSL: Suchhilfe-Exit für Sammelsuchhilfe VMCF
SD_COLOR_LEGEND_DISPLAY NOTRANSL: Fehlerprotokoll - Anzeige
SD_DOCUMENT_ITEM_SCREEN_SELECT NOTRANSL: Positionsauswahl von SD-Belegen
SD_DOCUMENT_ITEM_SCREEN_SETPOS NOTRANSL: Positionierung auf SD-Belegpositionen
SD_VF04_CALL_CUSTOMER_FUNCTION NOTRANSL: Fehlerprotokoll - Anzeige
SD_VF24_CALL_CUSTOMER_FUNCTION NOTRANSL: Fehlerprotokoll - Anzeige
SD_VMCFA_CUSTOMER_FUNCTION NOTRANSL: Fehlerprotokoll - Anzeige
SPLIT_DATA_GET DE-EN-LANG-SWITCH-NO-TRANSLATION
SPLIT_TREE_LIST_DISPLAY NOTRANSL: Splitanalyse anzeigen
VBFS_SUMMED_TREE_LIST_DISPLAY NOTRANSL: Fehlerprotokoll - Anzeige
VBFS_TREE_LIST_DISPLAY NOTRANSL: Fehlerprotokoll - Anzeige
VBSK_ALV_DISPLAY NOTRANSL: Fehlerprotokoll - Anzeige
VBSS_ALV_DISPLAY NOTRANSL: Fehlerprotokoll - Anzeige
VKDFS_ALV_DISPLAY NOTRANSL: Fehlerprotokoll - Anzeige
VMCFA_ALV_DISPLAY NOTRANSL: Liste gesperrter Fakturenl - Anzeige

TABLES Parameters details for EXIT_SAPLV60P_019

CT_VKDFIF - Billing Index

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

Copy and paste ABAP code example for EXIT_SAPLV60P_019 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_ct_vkdfif  TYPE STANDARD TABLE OF VKDFIFGN. "   

  CALL FUNCTION 'EXIT_SAPLV60P_019'  "DE-EN-LANG-SWITCH-NO-TRANSLATION
    TABLES
         CT_VKDFIF = lt_ct_vkdfif
. " EXIT_SAPLV60P_019




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLV60P_019

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!