SAP ISP_NAECHSTES_TRAGEDATUM_ZUST Function Module for IS-M/SD: Determine Next Distribution Date for Carrier
ISP_NAECHSTES_TRAGEDATUM_ZUST is a standard isp naechstes tragedatum zust 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: Determine Next Distribution Date for Carrier 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 naechstes tragedatum zust FM, simply by entering the name ISP_NAECHSTES_TRAGEDATUM_ZUST into the relevant SAP transaction such as SE37 or SE38.
Function Group: JV10
Program Name: SAPLJV10
Main Program: SAPLJV10
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISP_NAECHSTES_TRAGEDATUM_ZUST 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_NAECHSTES_TRAGEDATUM_ZUST'"IS-M/SD: Determine Next Distribution Date for Carrier.
EXPORTING
S_BEZIRK = "Carrier Route
S_BEZIRKSRUNDE = "Delivery Round
S_VERSANDDATUM = "Shipping date/distribution date for carrier
* S_ZUSTELLER = ' ' "Carrier
IMPORTING
NEXT_DATE = "Next distribution date for carrier
IMPORTING Parameters details for ISP_NAECHSTES_TRAGEDATUM_ZUST
S_BEZIRK - Carrier Route
Data type: JVTBEZGP-BEZIRKOptional: No
Call by Reference: No ( called with pass by value option)
S_BEZIRKSRUNDE - Delivery Round
Data type: JVTBEZGP-BEZRUNDEOptional: No
Call by Reference: No ( called with pass by value option)
S_VERSANDDATUM - Shipping date/distribution date for carrier
Data type: JVTFEHLER-VRSNDDATUMOptional: No
Call by Reference: No ( called with pass by value option)
S_ZUSTELLER - Carrier
Data type: JVTBEZGP-JGPARTNERDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISP_NAECHSTES_TRAGEDATUM_ZUST
NEXT_DATE - Next distribution date for carrier
Data type: JVTFEHLER-JZIVERSDATOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISP_NAECHSTES_TRAGEDATUM_ZUST 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_s_bezirk | TYPE JVTBEZGP-BEZIRK, " | |||
| lv_next_date | TYPE JVTFEHLER-JZIVERSDAT, " | |||
| lv_s_bezirksrunde | TYPE JVTBEZGP-BEZRUNDE, " | |||
| lv_s_versanddatum | TYPE JVTFEHLER-VRSNDDATUM, " | |||
| lv_s_zusteller | TYPE JVTBEZGP-JGPARTNER. " SPACE |
|   CALL FUNCTION 'ISP_NAECHSTES_TRAGEDATUM_ZUST' "IS-M/SD: Determine Next Distribution Date for Carrier |
| EXPORTING | ||
| S_BEZIRK | = lv_s_bezirk | |
| S_BEZIRKSRUNDE | = lv_s_bezirksrunde | |
| S_VERSANDDATUM | = lv_s_versanddatum | |
| S_ZUSTELLER | = lv_s_zusteller | |
| IMPORTING | ||
| NEXT_DATE | = lv_next_date | |
| . " ISP_NAECHSTES_TRAGEDATUM_ZUST | ||
ABAP code using 7.40 inline data declarations to call FM ISP_NAECHSTES_TRAGEDATUM_ZUST
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 BEZIRK FROM JVTBEZGP INTO @DATA(ld_s_bezirk). | ||||
| "SELECT single JZIVERSDAT FROM JVTFEHLER INTO @DATA(ld_next_date). | ||||
| "SELECT single BEZRUNDE FROM JVTBEZGP INTO @DATA(ld_s_bezirksrunde). | ||||
| "SELECT single VRSNDDATUM FROM JVTFEHLER INTO @DATA(ld_s_versanddatum). | ||||
| "SELECT single JGPARTNER FROM JVTBEZGP INTO @DATA(ld_s_zusteller). | ||||
| DATA(ld_s_zusteller) | = ' '. | |||
Search for further information about these or an SAP related objects