SAP LE_POD_DATA_PROCESSING Function Module for NOTRANSL: POD data from delivery item
LE_POD_DATA_PROCESSING is a standard le pod data processing SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: POD data from delivery item 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 le pod data processing FM, simply by entering the name LE_POD_DATA_PROCESSING into the relevant SAP transaction such as SE37 or SE38.
Function Group: LE_POD
Program Name: SAPLLE_POD
Main Program: SAPLLE_POD
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function LE_POD_DATA_PROCESSING 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 'LE_POD_DATA_PROCESSING'"NOTRANSL: POD data from delivery item.
EXPORTING
IT_LIKP = "SD Document: Delivery Header Data
IS_LIPS = "SD Document: Delivery: Item Data
IF_PODAU = "Level of Automation of the POD for Inbound Deliveries
IF_TRTYP = "Transaction Type
* IF_DIALOG = ' ' "
* IF_NOCHANGE = ' ' "
IMPORTING
EF_LIPS_KZPOD = "POD indicator (relevance, verification, confirmation)
EF_LIPS_LFIMG = "Actual Quantity Delivered (In Sales Units)
EF_LIPS_PODREL = "
TABLES
IT_XLIPS = "Reference Structure for XLIPS/YLIPS
IT_YLIPS = "Reference Structure for XLIPS/YLIPS
EXCEPTIONS
ERROR_TVPOD_UPDATE = 1 NO_DEFAULT_REASON_FOUND = 2 POD_PROCESSING_DATA_MISSING = 3 ITEM_NOT_POD_RELEVANT = 4
IMPORTING Parameters details for LE_POD_DATA_PROCESSING
IT_LIKP - SD Document: Delivery Header Data
Data type: LIKPOptional: No
Call by Reference: Yes
IS_LIPS - SD Document: Delivery: Item Data
Data type: LIPSOptional: No
Call by Reference: Yes
IF_PODAU - Level of Automation of the POD for Inbound Deliveries
Data type: TVLP-PODAUOptional: No
Call by Reference: Yes
IF_TRTYP - Transaction Type
Data type: T180-TRTYPOptional: No
Call by Reference: Yes
IF_DIALOG -
Data type: CDefault: SPACE
Optional: Yes
Call by Reference: Yes
IF_NOCHANGE -
Data type: CDefault: SPACE
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for LE_POD_DATA_PROCESSING
EF_LIPS_KZPOD - POD indicator (relevance, verification, confirmation)
Data type: LIPS-KZPODOptional: No
Call by Reference: Yes
EF_LIPS_LFIMG - Actual Quantity Delivered (In Sales Units)
Data type: LIPS-LFIMGOptional: No
Call by Reference: Yes
EF_LIPS_PODREL -
Data type: LIPS-PODRELOptional: No
Call by Reference: Yes
TABLES Parameters details for LE_POD_DATA_PROCESSING
IT_XLIPS - Reference Structure for XLIPS/YLIPS
Data type: LIPSVBOptional: No
Call by Reference: Yes
IT_YLIPS - Reference Structure for XLIPS/YLIPS
Data type: LIPSVBOptional: No
Call by Reference: Yes
EXCEPTIONS details
ERROR_TVPOD_UPDATE -
Data type:Optional: No
Call by Reference: Yes
NO_DEFAULT_REASON_FOUND -
Data type:Optional: No
Call by Reference: Yes
POD_PROCESSING_DATA_MISSING -
Data type:Optional: No
Call by Reference: Yes
ITEM_NOT_POD_RELEVANT -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for LE_POD_DATA_PROCESSING 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: | ||||
| lv_it_likp | TYPE LIKP, " | |||
| lt_it_xlips | TYPE STANDARD TABLE OF LIPSVB, " | |||
| lv_ef_lips_kzpod | TYPE LIPS-KZPOD, " | |||
| lv_error_tvpod_update | TYPE LIPS, " | |||
| lv_is_lips | TYPE LIPS, " | |||
| lt_it_ylips | TYPE STANDARD TABLE OF LIPSVB, " | |||
| lv_ef_lips_lfimg | TYPE LIPS-LFIMG, " | |||
| lv_no_default_reason_found | TYPE LIPS, " | |||
| lv_if_podau | TYPE TVLP-PODAU, " | |||
| lv_ef_lips_podrel | TYPE LIPS-PODREL, " | |||
| lv_pod_processing_data_missing | TYPE LIPS, " | |||
| lv_if_trtyp | TYPE T180-TRTYP, " | |||
| lv_item_not_pod_relevant | TYPE T180, " | |||
| lv_if_dialog | TYPE C, " SPACE | |||
| lv_if_nochange | TYPE C. " SPACE |
|   CALL FUNCTION 'LE_POD_DATA_PROCESSING' "NOTRANSL: POD data from delivery item |
| EXPORTING | ||
| IT_LIKP | = lv_it_likp | |
| IS_LIPS | = lv_is_lips | |
| IF_PODAU | = lv_if_podau | |
| IF_TRTYP | = lv_if_trtyp | |
| IF_DIALOG | = lv_if_dialog | |
| IF_NOCHANGE | = lv_if_nochange | |
| IMPORTING | ||
| EF_LIPS_KZPOD | = lv_ef_lips_kzpod | |
| EF_LIPS_LFIMG | = lv_ef_lips_lfimg | |
| EF_LIPS_PODREL | = lv_ef_lips_podrel | |
| TABLES | ||
| IT_XLIPS | = lt_it_xlips | |
| IT_YLIPS | = lt_it_ylips | |
| EXCEPTIONS | ||
| ERROR_TVPOD_UPDATE = 1 | ||
| NO_DEFAULT_REASON_FOUND = 2 | ||
| POD_PROCESSING_DATA_MISSING = 3 | ||
| ITEM_NOT_POD_RELEVANT = 4 | ||
| . " LE_POD_DATA_PROCESSING | ||
ABAP code using 7.40 inline data declarations to call FM LE_POD_DATA_PROCESSING
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 KZPOD FROM LIPS INTO @DATA(ld_ef_lips_kzpod). | ||||
| "SELECT single LFIMG FROM LIPS INTO @DATA(ld_ef_lips_lfimg). | ||||
| "SELECT single PODAU FROM TVLP INTO @DATA(ld_if_podau). | ||||
| "SELECT single PODREL FROM LIPS INTO @DATA(ld_ef_lips_podrel). | ||||
| "SELECT single TRTYP FROM T180 INTO @DATA(ld_if_trtyp). | ||||
| DATA(ld_if_dialog) | = ' '. | |||
| DATA(ld_if_nochange) | = ' '. | |||
Search for further information about these or an SAP related objects