GET_LANES_PERSISTENT SAP Method Determine a persistent Transportation Lane for Each Request
Below is documentation, parameters and attributes of ABAP Method GET_LANES_PERSISTENT within SAP class /SCMB/CL_LDDD. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /SCMB/CL_LDDD into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method GET_LANES_PERSISTENT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_LANES_PERSISTENT
.| Name | Type | Data Type | Description | Default Value |
| IT_GEO_FR_GUIDS | Importing | TYPE /SCMB/MDL_LOCID_TAB | Internal Key for Location | |
| IT_GEO_TO_GUIDS | Importing | TYPE /SCMB/MDL_LOCID_TAB | Internal Key for Location | |
| IT_MTR_UIDS | Importing | TYPE /SCMB/MDL_TTYPE_TAB | Key for Means of Transport | |
| IT_REQUEST | Importing | TYPE /SCMB/T_LDDD_LANE_REQUEST | Requests | |
| IV_TIME_FR | Importing | TYPE /SCMB/DE_TIMESTAMP | Time Stamp | |
| IV_TIME_TO | Importing | TYPE /SCMB/DE_TIMESTAMP | Time Stamp | |
| ET_MESSAGE | Exporting | TYPE /SCMB/T_LDDD_MESSAGE | Error messages | |
| ET_RESULT_LANE | Exporting | TYPE /SCMB/T_LDDD_LANE_RESULT | Transportation Lanes |
Exceptions of Method GET_LANES_PERSISTENT
This method does not have any exceptionsExample ABAP coding
DATA: lv_ET_MESSAGE TYPE /SCMB/T_LDDD_MESSAGE,
lv_ET_RESULT_LANE TYPE /SCMB/T_LDDD_LANE_RESULT,
lv_IT_GEO_FR_GUIDS TYPE /SCMB/MDL_LOCID_TAB,
lv_IT_GEO_TO_GUIDS TYPE /SCMB/MDL_LOCID_TAB,
lv_IT_MTR_UIDS TYPE /SCMB/MDL_TTYPE_TAB,
lv_IT_REQUEST TYPE /SCMB/T_LDDD_LANE_REQUEST,
lv_IV_TIME_FR TYPE /SCMB/DE_TIMESTAMP,
lv_IV_TIME_TO TYPE /SCMB/DE_TIMESTAMP,
lv_other TYPE c.
CALL METHOD /SCMB/CL_LDDD=>GET_LANES_PERSISTENT(
EXPORTING
IT_GEO_FR_GUIDS = lv_IT_GEO_FR_GUIDS
IT_GEO_TO_GUIDS = lv_IT_GEO_TO_GUIDS
IT_MTR_UIDS = lv_IT_MTR_UIDS
IT_REQUEST = lv_IT_REQUEST
IV_TIME_FR = lv_IV_TIME_FR
IV_TIME_TO = lv_IV_TIME_TO
IMPORTING
ET_MESSAGE = lv_ET_MESSAGE
ET_RESULT_LANE = lv_ET_RESULT_LANE ).
Links to Related Class(s)
/SCMB/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects