SAP EXIT_SAPLLCPP_001 Function Module for Exit for WM/PP Interface (Automatic TR Generation)
EXIT_SAPLLCPP_001 is a standard exit sapllcpp 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 Exit for WM/PP Interface (Automatic TR Generation) 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 sapllcpp 001 FM, simply by entering the name EXIT_SAPLLCPP_001 into the relevant SAP transaction such as SE37 or SE38.
Function Group: XLPP
Program Name: SAPLXLPP
Main Program:
Appliation area: L
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function EXIT_SAPLLCPP_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_SAPLLCPP_001'"Exit for WM/PP Interface (Automatic TR Generation).
EXPORTING
* I_FCALL = "
* I_SCALL = "
CHANGING
C_TBPRI = "Transfer Priority
C_DIRTA = "Direct TO Generation
C_KZTBV = "Indicator: Only Create Complete TR
C_PDATU = "Planned Date
C_PZEIT = "Planned Time
C_WEMPF = "Ship-To Party
C_ABLAD = "Unloading Point
C_KZBMG = "Indicator: Confirmed Quantity for TR Creation
TABLES
T_LRES = "Table: WM Data of Reservation
Related Function Modules
Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.L_EWMPP_RELEVANCE_CHECK
L_IMEWM_RELEVANCE_CHECK
L_KANBAN_CANCEL_REQUIREMENT
L_KANBAN_CONFIRM_TO
L_KANBAN_CREATE_REQUIREMENT
L_KANBAN_STORAGETYPE
L_WMPP_BATCH_LEVEL_CHECK
L_WMPP_CHANGE_MANAGEMENT
L_WMPP_CHANGE_RSNUM
L_WMPP_DL_PER_PRODORDER
L_WMPP_DL_PER_RES Offene Lieferungspositionen zur Reservierungsposition
L_WMPP_DL_PER_RES_MULTIPLE
L_WMPP_GET_INFO_FOR_ORDR
L_WMPP_GET_INFO_FOR_PRSA
L_WMPP_GET_INFO_FOR_RMAT
L_WMPP_GET_PROD_BIN
L_WMPP_GET_SHP_ORG_DATA
L_WMPP_GET_WM_QUANTITY
L_WMPP_INITIALIZATION
L_WMPP_INIT_WMDATA
L_WMPP_INTERFACE_FROM_PP
L_WMPP_INTERFACE_RELEASE_PART
L_WMPP_INTERFACE_RELEASE_PART1
L_WMPP_INTERFACE_RELEASE_PART2
L_WMPP_LGORT_DETERMINE
L_WMPP_MAT_BIN_SITUATION
L_WMPP_MESSAGETYPE_CHECK_T160M
L_WMPP_OBDLV_CANCEL_UPDATETASK
L_WMPP_OBDLV_CREATE_UPDATETASK
L_WMPP_PROTOCOL_SHOW
L_WMPP_RELEVANCE_CHECK
L_WMPP_RS_PER_MAT_BIN
L_WMPP_RS_PER_PO
L_WMPP_RS_TR_LIST
L_WMPP_SET_UOM
L_WMPP_SITUATION_GET_SET
L_WMPP_T345_READ
L_WMPP_TO_CONFIRM
L_WMPP_TO_PER_BIN
L_WMPP_TR_PER_BIN
L_WMPP_TR_PREPARE
L_WMPP_WMVIEW
L_WMPP_WMVIEW_RELEASE_PART
L_WMPP_WM_POST
L_WMPP_WM_POST_FINAL
IMPORTING Parameters details for EXIT_SAPLLCPP_001
I_FCALL -
Data type: RLCPP-DCALLOptional: Yes
Call by Reference: No ( called with pass by value option)
I_SCALL -
Data type: RLCPP-DCALLOptional: Yes
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for EXIT_SAPLLCPP_001
C_TBPRI - Transfer Priority
Data type: LTBK-TBPRIOptional: No
Call by Reference: No ( called with pass by value option)
C_DIRTA - Direct TO Generation
Data type: RLCPP-DIRTAOptional: No
Call by Reference: No ( called with pass by value option)
C_KZTBV - Indicator: Only Create Complete TR
Data type: RLCPP-KZTBVOptional: No
Call by Reference: No ( called with pass by value option)
C_PDATU - Planned Date
Data type: LTBK-PDATUOptional: No
Call by Reference: No ( called with pass by value option)
C_PZEIT - Planned Time
Data type: LTBK-PZEITOptional: No
Call by Reference: No ( called with pass by value option)
C_WEMPF - Ship-To Party
Data type: LTBP-WEMPFOptional: No
Call by Reference: No ( called with pass by value option)
C_ABLAD - Unloading Point
Data type: LTBP-ABLADOptional: No
Call by Reference: No ( called with pass by value option)
C_KZBMG - Indicator: Confirmed Quantity for TR Creation
Data type: RLCPP-KZBMGOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for EXIT_SAPLLCPP_001
T_LRES - Table: WM Data of Reservation
Data type: LRESBOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for EXIT_SAPLLCPP_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_t_lres | TYPE STANDARD TABLE OF LRESB, " | |||
| lv_c_tbpri | TYPE LTBK-TBPRI, " | |||
| lv_i_fcall | TYPE RLCPP-DCALL, " | |||
| lv_c_dirta | TYPE RLCPP-DIRTA, " | |||
| lv_i_scall | TYPE RLCPP-DCALL, " | |||
| lv_c_kztbv | TYPE RLCPP-KZTBV, " | |||
| lv_c_pdatu | TYPE LTBK-PDATU, " | |||
| lv_c_pzeit | TYPE LTBK-PZEIT, " | |||
| lv_c_wempf | TYPE LTBP-WEMPF, " | |||
| lv_c_ablad | TYPE LTBP-ABLAD, " | |||
| lv_c_kzbmg | TYPE RLCPP-KZBMG. " |
|   CALL FUNCTION 'EXIT_SAPLLCPP_001' "Exit for WM/PP Interface (Automatic TR Generation) |
| EXPORTING | ||
| I_FCALL | = lv_i_fcall | |
| I_SCALL | = lv_i_scall | |
| CHANGING | ||
| C_TBPRI | = lv_c_tbpri | |
| C_DIRTA | = lv_c_dirta | |
| C_KZTBV | = lv_c_kztbv | |
| C_PDATU | = lv_c_pdatu | |
| C_PZEIT | = lv_c_pzeit | |
| C_WEMPF | = lv_c_wempf | |
| C_ABLAD | = lv_c_ablad | |
| C_KZBMG | = lv_c_kzbmg | |
| TABLES | ||
| T_LRES | = lt_t_lres | |
| . " EXIT_SAPLLCPP_001 | ||
ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLLCPP_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.| "SELECT single TBPRI FROM LTBK INTO @DATA(ld_c_tbpri). | ||||
| "SELECT single DCALL FROM RLCPP INTO @DATA(ld_i_fcall). | ||||
| "SELECT single DIRTA FROM RLCPP INTO @DATA(ld_c_dirta). | ||||
| "SELECT single DCALL FROM RLCPP INTO @DATA(ld_i_scall). | ||||
| "SELECT single KZTBV FROM RLCPP INTO @DATA(ld_c_kztbv). | ||||
| "SELECT single PDATU FROM LTBK INTO @DATA(ld_c_pdatu). | ||||
| "SELECT single PZEIT FROM LTBK INTO @DATA(ld_c_pzeit). | ||||
| "SELECT single WEMPF FROM LTBP INTO @DATA(ld_c_wempf). | ||||
| "SELECT single ABLAD FROM LTBP INTO @DATA(ld_c_ablad). | ||||
| "SELECT single KZBMG FROM RLCPP INTO @DATA(ld_c_kzbmg). | ||||
Search for further information about these or an SAP related objects