SAP EXIT_SAPLWLFY_002 Function Module for Enhancement: Agency Business: Print Formatting
EXIT_SAPLWLFY_002 is a standard exit saplwlfy 002 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Enhancement: Agency Business: Print Formatting 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 saplwlfy 002 FM, simply by entering the name EXIT_SAPLWLFY_002 into the relevant SAP transaction such as SE37 or SE38.
Function Group: XAGX
Program Name: SAPLXAGX
Main Program:
Appliation area: W
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function EXIT_SAPLWLFY_002 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_SAPLWLFY_002'"Enhancement: Agency Business: Print Formatting.
EXPORTING
I_KOMLFK = "Document Header of Agency Document
I_KOMK = "Communication Structure Price Determination of Header
I_LANGU = "Language Key
TABLES
T_KOMV = "Document Conditions of the Agency Document
T_KOMVD = "Print-Related Information on the Document Conditions
T_OUTPUT_TAB = "Table with Data and Fields for Printing Payment Advice
T_KOMLFL = "Tables with Docuemnts for Document Header I_KOMLFK
Related Function Modules
Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.WLF_COND_LIST_ACTIVE NOTRANSL: Konditionsliste aktiv
WLF_PRICE_PRINT_AVICE_MULT NOTRANSL: Agenturgeschäft: Konditionsdaten zu Belegen des Zahlungslaufes
WLF_PRICE_PRINT_CURR_AVICE_MUL NOTRANSL: Agenturgeschäft: Konditionsdaten zum FI-Beleg aufbereiten in neu
WLF_PRICE_PRINT_DATA NOTRANSL: Agenturgeschäft: Druckdaten zu gemeinsammen Belegen ermitteln
WLF_PRICE_PRINT_DATA_2 NOTRANSL: Agenturgeschäft: Konditionsliste ausgeben
WLF_PRICE_PRINT_DATA_GET NOTRANSL: Agenturgeschäft: Druckdaten zu gemeinsammen Belegen ermitteln
WLF_PRICE_PRINT_HEAD_PREP NOTRANSL: Agenturgeschäft: Kopfkonditionen aufbereiten
WLF_PRICE_PRINT_HEAD_PREP_AVIS NOTRANSL: Agenturgeschäft: Konditionsdaten zum FI-Beleg aufbereiten
WLF_TAX_INFO_PRINT_DATA NOTRANSL: Agenturgeschäft: Druckdaten zu gemeinsammen Belegen ermitteln
IMPORTING Parameters details for EXIT_SAPLWLFY_002
I_KOMLFK - Document Header of Agency Document
Data type: KOMLFKOptional: No
Call by Reference: No ( called with pass by value option)
I_KOMK - Communication Structure Price Determination of Header
Data type: KOMKOptional: No
Call by Reference: No ( called with pass by value option)
I_LANGU - Language Key
Data type: REGUH-ZSPRAOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for EXIT_SAPLWLFY_002
T_KOMV - Document Conditions of the Agency Document
Data type: KOMVOptional: No
Call by Reference: No ( called with pass by value option)
T_KOMVD - Print-Related Information on the Document Conditions
Data type: KOMVDOptional: No
Call by Reference: No ( called with pass by value option)
T_OUTPUT_TAB - Table with Data and Fields for Printing Payment Advice
Data type: KOMPRIOptional: No
Call by Reference: No ( called with pass by value option)
T_KOMLFL - Tables with Docuemnts for Document Header I_KOMLFK
Data type: KOMLFLOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for EXIT_SAPLWLFY_002 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_t_komv | TYPE STANDARD TABLE OF KOMV, " | |||
| lv_i_komlfk | TYPE KOMLFK, " | |||
| lv_i_komk | TYPE KOMK, " | |||
| lt_t_komvd | TYPE STANDARD TABLE OF KOMVD, " | |||
| lv_i_langu | TYPE REGUH-ZSPRA, " | |||
| lt_t_output_tab | TYPE STANDARD TABLE OF KOMPRI, " | |||
| lt_t_komlfl | TYPE STANDARD TABLE OF KOMLFL. " |
|   CALL FUNCTION 'EXIT_SAPLWLFY_002' "Enhancement: Agency Business: Print Formatting |
| EXPORTING | ||
| I_KOMLFK | = lv_i_komlfk | |
| I_KOMK | = lv_i_komk | |
| I_LANGU | = lv_i_langu | |
| TABLES | ||
| T_KOMV | = lt_t_komv | |
| T_KOMVD | = lt_t_komvd | |
| T_OUTPUT_TAB | = lt_t_output_tab | |
| T_KOMLFL | = lt_t_komlfl | |
| . " EXIT_SAPLWLFY_002 | ||
ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLWLFY_002
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 ZSPRA FROM REGUH INTO @DATA(ld_i_langu). | ||||
Search for further information about these or an SAP related objects