SAP ISP_DAILY_DELIVERIES_READ Function Module for IS-M/SD: Read Deliveries for Specific Dates
ISP_DAILY_DELIVERIES_READ is a standard isp daily deliveries read SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-M/SD: Read Deliveries for Specific Dates 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 isp daily deliveries read FM, simply by entering the name ISP_DAILY_DELIVERIES_READ into the relevant SAP transaction such as SE37 or SE38.
Function Group: JV15
Program Name: SAPLJV15
Main Program: SAPLJV15
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISP_DAILY_DELIVERIES_READ 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 'ISP_DAILY_DELIVERIES_READ'"IS-M/SD: Read Deliveries for Specific Dates.
EXPORTING
BISDATUM = "
* DRERZ = ' ' "
* LIEFERART = ' ' "
* PVA = ' ' "
VONDATUM = "
WERK = "
* XPOSTVERSAND_SEPARAT = ' ' "
TABLES
LFNG_POST_TAB = "
LFNG_TAB = "
EXCEPTIONS
NO_DELIVERIES = 1
IMPORTING Parameters details for ISP_DAILY_DELIVERIES_READ
BISDATUM -
Data type: JVTLFNG-VERSANDDATOptional: No
Call by Reference: No ( called with pass by value option)
DRERZ -
Data type: JVTLFNG-DRERZTATDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
LIEFERART -
Data type: JVTLFNG-LFARTLOGDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
PVA -
Data type: JVTLFNG-PVATATDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
VONDATUM -
Data type: JVTLFNG-VERSANDDATOptional: No
Call by Reference: No ( called with pass by value option)
WERK -
Data type: JVTLFNG-DRUCKEREIOptional: No
Call by Reference: No ( called with pass by value option)
XPOSTVERSAND_SEPARAT -
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISP_DAILY_DELIVERIES_READ
LFNG_POST_TAB -
Data type: JVTLFNGOptional: No
Call by Reference: No ( called with pass by value option)
LFNG_TAB -
Data type: JVTLFNGOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_DELIVERIES -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISP_DAILY_DELIVERIES_READ 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_bisdatum | TYPE JVTLFNG-VERSANDDAT, " | |||
| lt_lfng_post_tab | TYPE STANDARD TABLE OF JVTLFNG, " | |||
| lv_no_deliveries | TYPE JVTLFNG, " | |||
| lv_drerz | TYPE JVTLFNG-DRERZTAT, " SPACE | |||
| lt_lfng_tab | TYPE STANDARD TABLE OF JVTLFNG, " | |||
| lv_lieferart | TYPE JVTLFNG-LFARTLOG, " SPACE | |||
| lv_pva | TYPE JVTLFNG-PVATAT, " SPACE | |||
| lv_vondatum | TYPE JVTLFNG-VERSANDDAT, " | |||
| lv_werk | TYPE JVTLFNG-DRUCKEREI, " | |||
| lv_xpostversand_separat | TYPE JVTLFNG. " SPACE |
|   CALL FUNCTION 'ISP_DAILY_DELIVERIES_READ' "IS-M/SD: Read Deliveries for Specific Dates |
| EXPORTING | ||
| BISDATUM | = lv_bisdatum | |
| DRERZ | = lv_drerz | |
| LIEFERART | = lv_lieferart | |
| PVA | = lv_pva | |
| VONDATUM | = lv_vondatum | |
| WERK | = lv_werk | |
| XPOSTVERSAND_SEPARAT | = lv_xpostversand_separat | |
| TABLES | ||
| LFNG_POST_TAB | = lt_lfng_post_tab | |
| LFNG_TAB | = lt_lfng_tab | |
| EXCEPTIONS | ||
| NO_DELIVERIES = 1 | ||
| . " ISP_DAILY_DELIVERIES_READ | ||
ABAP code using 7.40 inline data declarations to call FM ISP_DAILY_DELIVERIES_READ
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 VERSANDDAT FROM JVTLFNG INTO @DATA(ld_bisdatum). | ||||
| "SELECT single DRERZTAT FROM JVTLFNG INTO @DATA(ld_drerz). | ||||
| DATA(ld_drerz) | = ' '. | |||
| "SELECT single LFARTLOG FROM JVTLFNG INTO @DATA(ld_lieferart). | ||||
| DATA(ld_lieferart) | = ' '. | |||
| "SELECT single PVATAT FROM JVTLFNG INTO @DATA(ld_pva). | ||||
| DATA(ld_pva) | = ' '. | |||
| "SELECT single VERSANDDAT FROM JVTLFNG INTO @DATA(ld_vondatum). | ||||
| "SELECT single DRUCKEREI FROM JVTLFNG INTO @DATA(ld_werk). | ||||
| DATA(ld_xpostversand_separat) | = ' '. | |||
Search for further information about these or an SAP related objects