SAP EXIT_SAPLV56T_001 Function Module for Filter Delivery Items for Shipment
EXIT_SAPLV56T_001 is a standard exit saplv56t 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 Filter Delivery Items for Shipment 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 saplv56t 001 FM, simply by entering the name EXIT_SAPLV56T_001 into the relevant SAP transaction such as SE37 or SE38.
Function Group: XV56
Program Name: SAPLXV56
Main Program:
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function EXIT_SAPLV56T_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_SAPLV56T_001'"Filter Delivery Items for Shipment.
EXPORTING
* I_FILTER_TYPE = ' ' "Filter Category Dependent on Application
TABLES
* I_VTRLK = "Delivery Data (Header Data)
I_VTRLP_ALL = "(Unfiltered) Delivery Data (Items)
E_VTRLP_FILTER = "Delivery Data (Items) After Filtering
Related Function Modules
Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.LETRA_DPP_GET_BLOCK_FLAG DP&P: Check on blocked vendor
LE_SHIPMENTS_SELECT NOTRANSL: Selektieren weiterer Transporte
LE_SHIPMENT_ADDRESS_READ_SP NOTRANSL: Füllen der Bezeichnungen zum Transportkopf (dynamischen Teil fül
LE_SHIPMENT_VENDOR_MASTER_READ NOTRANSL: Lesen Lieferantenstamm für Dienstleister
RV_SHIPMENT_PRINT_VIEW NOTRANSL: Lesen Transport und zugehörige Objekte für Drucken
RV_SHIPMENT_READ NOTRANSL: Transport lesen
RV_SHIPMENT_VIEW NOTRANSL: Lesen Transport und zugehörige Objekte
RV_SHIPMENT_VIEW_REFRESH NOTRANSL: Initialisieren Transport und zugehörige Objekte
SD_PACKING_FOR_SHIPMENT NOTRANSL: Versandelemente (transportbasiert) zu Transporten lesen
SD_SHIPMENT_DELIV_ITEM_FILTER NOTRANSL: Filtern von Lieferungsdaten aus Transporten
SD_SHIPMENT_ITEM_FILL NOTRANSL: Anreichern des dynamischen Teils der internen Tabelle für die Po
SD_SHIPMENT_SEGMENT_FILL NOTRANSL: Anreichern des dynamischen Teils der Interne Tabelle fuer die Ab
IMPORTING Parameters details for EXIT_SAPLV56T_001
I_FILTER_TYPE - Filter Category Dependent on Application
Data type: RV56A-FLTTYPDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for EXIT_SAPLV56T_001
I_VTRLK - Delivery Data (Header Data)
Data type: VTRLKOptional: Yes
Call by Reference: No ( called with pass by value option)
I_VTRLP_ALL - (Unfiltered) Delivery Data (Items)
Data type: VTRLPOptional: No
Call by Reference: No ( called with pass by value option)
E_VTRLP_FILTER - Delivery Data (Items) After Filtering
Data type: VTRLPOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for EXIT_SAPLV56T_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_i_vtrlk | TYPE STANDARD TABLE OF VTRLK, " | |||
| lv_i_filter_type | TYPE RV56A-FLTTYP, " SPACE | |||
| lt_i_vtrlp_all | TYPE STANDARD TABLE OF VTRLP, " | |||
| lt_e_vtrlp_filter | TYPE STANDARD TABLE OF VTRLP. " |
|   CALL FUNCTION 'EXIT_SAPLV56T_001' "Filter Delivery Items for Shipment |
| EXPORTING | ||
| I_FILTER_TYPE | = lv_i_filter_type | |
| TABLES | ||
| I_VTRLK | = lt_i_vtrlk | |
| I_VTRLP_ALL | = lt_i_vtrlp_all | |
| E_VTRLP_FILTER | = lt_e_vtrlp_filter | |
| . " EXIT_SAPLV56T_001 | ||
ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLV56T_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 FLTTYP FROM RV56A INTO @DATA(ld_i_filter_type). | ||||
| DATA(ld_i_filter_type) | = ' '. | |||
Search for further information about these or an SAP related objects