GET_LANE SAP Method Determine Persistent or Dynamic Transportation Lane
Below is documentation, parameters and attributes of ABAP Method GET_LANE within SAP class /SCMB/CL_LDDD_LANE_MANAGER. 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_LANE_MANAGER into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method GET_LANE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_LANE
.| Name | Type | Data Type | Description | Default Value |
| IO_GEO_FR | Importing | TYPE REF TO /SCMB/CL_LDDD_GEO_OBJECT | Geo - Object for Lane Determination | |
| IO_GEO_TO | Importing | TYPE REF TO /SCMB/CL_LDDD_GEO_OBJECT | Geo - Object for Lane Determination | |
| IO_MTR | Importing | TYPE REF TO /SCMB/CL_LDDD_MTR_OBJECT | MTr - Object for Lane Determination | |
| IV_APPLY_ZONE_HIERACHY | Importing | TYPE BOOLE_D | Apply zone hierarchy | |
| IV_DETERMINE_ALL_LANES | Importing | TYPE BOOLE_D | Find all lanes per Request? | |
| IV_GEO_FROM_FIRST | Importing | TYPE BOOLE_D | Is the city considered first within the geography? | |
| IV_MTR_HIERARCHY_FIRST | Importing | TYPE BOOLE_D | Is the MTr hierarchy considered first? | |
| IV_REQUEST_ID | Importing | TYPE /SCMB/DE_REQUEST_ID | ||
| IV_TIME | Importing | TYPE /SCMB/DE_TIMESTAMP | ||
| ET_RESULT_LANES | Exporting | TYPE /SCMB/T_LD_LANE | Lanes found |
Exceptions of Method GET_LANE
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMB/CL_LDDD_LANE_MANAGER.
DATA: lv_ET_RESULT_LANES TYPE /SCMB/T_LD_LANE,
lv_IO_GEO_FR TYPE /SCMB/CL_LDDD_GEO_OBJECT,
lv_IO_GEO_TO TYPE /SCMB/CL_LDDD_GEO_OBJECT,
lv_IO_MTR TYPE /SCMB/CL_LDDD_MTR_OBJECT,
lv_IV_APPLY_ZONE_HIERACHY TYPE BOOLE_D,
lv_IV_DETERMINE_ALL_LANES TYPE BOOLE_D,
lv_IV_GEO_FROM_FIRST TYPE BOOLE_D,
lv_IV_MTR_HIERARCHY_FIRST TYPE BOOLE_D,
lv_IV_REQUEST_ID TYPE /SCMB/DE_REQUEST_ID,
lv_IV_TIME TYPE /SCMB/DE_TIMESTAMP,
lv_other TYPE c.
CALL METHOD lo_class=>GET_LANE(
EXPORTING
IO_GEO_FR = lv_IO_GEO_FR
IO_GEO_TO = lv_IO_GEO_TO
IO_MTR = lv_IO_MTR
IV_APPLY_ZONE_HIERACHY = lv_IV_APPLY_ZONE_HIERACHY
IV_DETERMINE_ALL_LANES = lv_IV_DETERMINE_ALL_LANES
IV_GEO_FROM_FIRST = lv_IV_GEO_FROM_FIRST
IV_MTR_HIERARCHY_FIRST = lv_IV_MTR_HIERARCHY_FIRST
IV_REQUEST_ID = lv_IV_REQUEST_ID
IV_TIME = lv_IV_TIME
IMPORTING
ET_RESULT_LANES = lv_ET_RESULT_LANES ).
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