SAP ISP_JVTBEZRND_EXIST_CHECK Function Module for IS-M/SD: Generate Update/Insert Records for Delivery Round
ISP_JVTBEZRND_EXIST_CHECK is a standard isp jvtbezrnd exist check 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: Generate Update/Insert Records for Delivery Round 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 jvtbezrnd exist check FM, simply by entering the name ISP_JVTBEZRND_EXIST_CHECK 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_JVTBEZRND_EXIST_CHECK 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_JVTBEZRND_EXIST_CHECK'"IS-M/SD: Generate Update/Insert Records for Delivery Round.
EXPORTING
BEZIRK = "Carrier Route
BEZRUNDE = "Delivery Round
* KURZTEXT = ' ' "Short text
* LANGTEXT = ' ' "Long text
* STAMM_VSG = ' ' "Main carrier's service company
* STAMM_Z = ' ' "Main carrier
* X_RO_INKASSO = CON_ANGEKREUZT "Field collector function possible
* X_RO_ZUSTELLER = CON_ANGEKREUZT "Carrier function possible
IMPORTING
LANGTEXT = "Long text
TABLES
BEZRND_TAB = "Table with Entries
IMPORTING Parameters details for ISP_JVTBEZRND_EXIST_CHECK
BEZIRK - Carrier Route
Data type: JVTBEZIRK-BEZIRKOptional: No
Call by Reference: No ( called with pass by value option)
BEZRUNDE - Delivery Round
Data type: JVTBEZRND-BEZRUNDEOptional: No
Call by Reference: No ( called with pass by value option)
KURZTEXT - Short text
Data type: JVTBEZRND-KURZTEXTDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
LANGTEXT - Long text
Data type: JVTBEZRND-LANGTEXTDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
STAMM_VSG - Main carrier's service company
Data type: JVTBEZRND-STAMM_ZVSGDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
STAMM_Z - Main carrier
Data type: JVTBEZRND-STAMM_ZUSTDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_RO_INKASSO - Field collector function possible
Data type: JVTBEZRND-X_RO_IKDefault: CON_ANGEKREUZT
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_RO_ZUSTELLER - Carrier function possible
Data type: JVTBEZRND-X_RO_ZUDefault: CON_ANGEKREUZT
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISP_JVTBEZRND_EXIST_CHECK
LANGTEXT - Long text
Data type: JVTBEZRND-LANGTEXTOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISP_JVTBEZRND_EXIST_CHECK
BEZRND_TAB - Table with Entries
Data type: RJV1310Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISP_JVTBEZRND_EXIST_CHECK 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_bezirk | TYPE JVTBEZIRK-BEZIRK, " | |||
| lv_langtext | TYPE JVTBEZRND-LANGTEXT, " | |||
| lt_bezrnd_tab | TYPE STANDARD TABLE OF RJV1310, " | |||
| lv_bezrunde | TYPE JVTBEZRND-BEZRUNDE, " | |||
| lv_kurztext | TYPE JVTBEZRND-KURZTEXT, " SPACE | |||
| lv_langtext | TYPE JVTBEZRND-LANGTEXT, " SPACE | |||
| lv_stamm_vsg | TYPE JVTBEZRND-STAMM_ZVSG, " SPACE | |||
| lv_stamm_z | TYPE JVTBEZRND-STAMM_ZUST, " SPACE | |||
| lv_x_ro_inkasso | TYPE JVTBEZRND-X_RO_IK, " CON_ANGEKREUZT | |||
| lv_x_ro_zusteller | TYPE JVTBEZRND-X_RO_ZU. " CON_ANGEKREUZT |
|   CALL FUNCTION 'ISP_JVTBEZRND_EXIST_CHECK' "IS-M/SD: Generate Update/Insert Records for Delivery Round |
| EXPORTING | ||
| BEZIRK | = lv_bezirk | |
| BEZRUNDE | = lv_bezrunde | |
| KURZTEXT | = lv_kurztext | |
| LANGTEXT | = lv_langtext | |
| STAMM_VSG | = lv_stamm_vsg | |
| STAMM_Z | = lv_stamm_z | |
| X_RO_INKASSO | = lv_x_ro_inkasso | |
| X_RO_ZUSTELLER | = lv_x_ro_zusteller | |
| IMPORTING | ||
| LANGTEXT | = lv_langtext | |
| TABLES | ||
| BEZRND_TAB | = lt_bezrnd_tab | |
| . " ISP_JVTBEZRND_EXIST_CHECK | ||
ABAP code using 7.40 inline data declarations to call FM ISP_JVTBEZRND_EXIST_CHECK
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 JVTBEZIRK INTO @DATA(ld_bezirk). | ||||
| "SELECT single LANGTEXT FROM JVTBEZRND INTO @DATA(ld_langtext). | ||||
| "SELECT single BEZRUNDE FROM JVTBEZRND INTO @DATA(ld_bezrunde). | ||||
| "SELECT single KURZTEXT FROM JVTBEZRND INTO @DATA(ld_kurztext). | ||||
| DATA(ld_kurztext) | = ' '. | |||
| "SELECT single LANGTEXT FROM JVTBEZRND INTO @DATA(ld_langtext). | ||||
| DATA(ld_langtext) | = ' '. | |||
| "SELECT single STAMM_ZVSG FROM JVTBEZRND INTO @DATA(ld_stamm_vsg). | ||||
| DATA(ld_stamm_vsg) | = ' '. | |||
| "SELECT single STAMM_ZUST FROM JVTBEZRND INTO @DATA(ld_stamm_z). | ||||
| DATA(ld_stamm_z) | = ' '. | |||
| "SELECT single X_RO_IK FROM JVTBEZRND INTO @DATA(ld_x_ro_inkasso). | ||||
| DATA(ld_x_ro_inkasso) | = CON_ANGEKREUZT. | |||
| "SELECT single X_RO_ZU FROM JVTBEZRND INTO @DATA(ld_x_ro_zusteller). | ||||
| DATA(ld_x_ro_zusteller) | = CON_ANGEKREUZT. | |||
Search for further information about these or an SAP related objects