READ_LANES SAP Method Mass Reading from Database
Below is documentation, parameters and attributes of ABAP Method READ_LANES within SAP class /SCTM/CL_LANE. 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 /SCTM/CL_LANE 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 READ_LANES can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method READ_LANES
.| Name | Type | Data Type | Description | Default Value |
| IO_GEOGRAPHY | Importing | TYPE REF TO /SCTM/CL_GEOGRAPHY | Administration of Geographical Objects | |
| IT_LOC_END_GUIDS | Importing | TYPE /SCMB/TT_GUID | Destination Locations | |
| IT_LOC_START_GUIDS | Importing | TYPE /SCMB/TT_GUID | Start Locations | |
| IT_MTR_UIDS | Importing | TYPE /SCMB/TT_MTR_UID | Means of Transport | |
| IT_TRIP_LANES | Importing | TYPE /SCTM/TT_AD_NO_LANE_MTR | Stages of the Trips | |
| IV_TIME_END | Importing | TYPE /SCMB/DE_TIMESTAMP | Validity End | |
| IV_TIME_START | Importing | TYPE /SCMB/DE_TIMESTAMP | Validity Start |
Exceptions of Method READ_LANES
/SCTM/CX_TM_RG_DATA - Inconsistent Data in Routing GuideExample ABAP coding
DATA: lv_IO_GEOGRAPHY TYPE /SCTM/CL_GEOGRAPHY,
lv_IT_LOC_END_GUIDS TYPE /SCMB/TT_GUID,
lv_IT_LOC_START_GUIDS TYPE /SCMB/TT_GUID,
lv_IT_MTR_UIDS TYPE /SCMB/TT_MTR_UID,
lv_IT_TRIP_LANES TYPE /SCTM/TT_AD_NO_LANE_MTR,
lv_IV_TIME_END TYPE /SCMB/DE_TIMESTAMP,
lv_IV_TIME_START TYPE /SCMB/DE_TIMESTAMP,
lv_other TYPE c.
CALL METHOD /SCTM/CL_LANE=>READ_LANES(
EXPORTING
IO_GEOGRAPHY = lv_IO_GEOGRAPHY
IT_LOC_END_GUIDS = lv_IT_LOC_END_GUIDS
IT_LOC_START_GUIDS = lv_IT_LOC_START_GUIDS
IT_MTR_UIDS = lv_IT_MTR_UIDS
IT_TRIP_LANES = lv_IT_TRIP_LANES
IV_TIME_END = lv_IV_TIME_END
IV_TIME_START = lv_IV_TIME_START ).
Links to Related Class(s)
/SCTM/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects