SAP ISP_JRTROUTE_SELECTS Function Module for IS-M/SD: Read Truck Route Data
ISP_JRTROUTE_SELECTS is a standard isp jrtroute selects 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 Truck Route Data 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 jrtroute selects FM, simply by entering the name ISP_JRTROUTE_SELECTS into the relevant SAP transaction such as SE37 or SE38.
Function Group: JR01
Program Name: SAPLJR01
Main Program: SAPLJR01
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISP_JRTROUTE_SELECTS 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_JRTROUTE_SELECTS'"IS-M/SD: Read Truck Route Data.
EXPORTING
AUFGABE = "
* BIS_DATUM = ' ' "
* VON_DATUM = ' ' "
IMPORTING
RCODE = "Return Code
TABLES
JRTROUTE_TAB = "
JRTRVERT_TAB = "
JRTRVPOS_TAB = "
SELECT_OBJECTS = "Table with Selection Parameters
IMPORTING Parameters details for ISP_JRTROUTE_SELECTS
AUFGABE -
Data type: RJR0101-AUFGABEOptional: No
Call by Reference: No ( called with pass by value option)
BIS_DATUM -
Data type: JRTRVPOS-GUELTIGBISDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
VON_DATUM -
Data type: JRTRVPOS-GUELTIGVONDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISP_JRTROUTE_SELECTS
RCODE - Return Code
Data type: INRI-RETURNCODEOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISP_JRTROUTE_SELECTS
JRTROUTE_TAB -
Data type: JRTROUTEOptional: No
Call by Reference: No ( called with pass by value option)
JRTRVERT_TAB -
Data type: JRTRVERTOptional: No
Call by Reference: No ( called with pass by value option)
JRTRVPOS_TAB -
Data type: JRTRVPOSOptional: No
Call by Reference: No ( called with pass by value option)
SELECT_OBJECTS - Table with Selection Parameters
Data type: RJR0102Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISP_JRTROUTE_SELECTS 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_rcode | TYPE INRI-RETURNCODE, " | |||
| lv_aufgabe | TYPE RJR0101-AUFGABE, " | |||
| lt_jrtroute_tab | TYPE STANDARD TABLE OF JRTROUTE, " | |||
| lv_bis_datum | TYPE JRTRVPOS-GUELTIGBIS, " SPACE | |||
| lt_jrtrvert_tab | TYPE STANDARD TABLE OF JRTRVERT, " | |||
| lv_von_datum | TYPE JRTRVPOS-GUELTIGVON, " SPACE | |||
| lt_jrtrvpos_tab | TYPE STANDARD TABLE OF JRTRVPOS, " | |||
| lt_select_objects | TYPE STANDARD TABLE OF RJR0102. " |
|   CALL FUNCTION 'ISP_JRTROUTE_SELECTS' "IS-M/SD: Read Truck Route Data |
| EXPORTING | ||
| AUFGABE | = lv_aufgabe | |
| BIS_DATUM | = lv_bis_datum | |
| VON_DATUM | = lv_von_datum | |
| IMPORTING | ||
| RCODE | = lv_rcode | |
| TABLES | ||
| JRTROUTE_TAB | = lt_jrtroute_tab | |
| JRTRVERT_TAB | = lt_jrtrvert_tab | |
| JRTRVPOS_TAB | = lt_jrtrvpos_tab | |
| SELECT_OBJECTS | = lt_select_objects | |
| . " ISP_JRTROUTE_SELECTS | ||
ABAP code using 7.40 inline data declarations to call FM ISP_JRTROUTE_SELECTS
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 RETURNCODE FROM INRI INTO @DATA(ld_rcode). | ||||
| "SELECT single AUFGABE FROM RJR0101 INTO @DATA(ld_aufgabe). | ||||
| "SELECT single GUELTIGBIS FROM JRTRVPOS INTO @DATA(ld_bis_datum). | ||||
| DATA(ld_bis_datum) | = ' '. | |||
| "SELECT single GUELTIGVON FROM JRTRVPOS INTO @DATA(ld_von_datum). | ||||
| DATA(ld_von_datum) | = ' '. | |||
Search for further information about these or an SAP related objects