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 directly

The 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

.

NameTypeData TypeDescriptionDefault Value
IO_GEOGRAPHYImportingTYPE REF TO
/SCTM/CL_GEOGRAPHY
Administration of Geographical Objects
IT_LOC_END_GUIDSImportingTYPE
/SCMB/TT_GUID
Destination Locations
IT_LOC_START_GUIDSImportingTYPE
/SCMB/TT_GUID
Start Locations
IT_MTR_UIDSImportingTYPE
/SCMB/TT_MTR_UID
Means of Transport
IT_TRIP_LANESImportingTYPE
/SCTM/TT_AD_NO_LANE_MTR
Stages of the Trips
IV_TIME_ENDImportingTYPE
/SCMB/DE_TIMESTAMP
Validity End
IV_TIME_STARTImportingTYPE
/SCMB/DE_TIMESTAMP
Validity Start



Exceptions of Method READ_LANES

/SCTM/CX_TM_RG_DATA - Inconsistent Data in Routing Guide

Example 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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!