SAP /SCTM/CL_LANE OO Class - Way Between Two Locations
/SCTM/CL_LANE is a standard SAP object class available within R/3 SAP systems depending on your version and release level. You can view/maintain the class details by entering its name into the relevant SAP transactions such as SE24, SE80 or even SE84. Below is the documentation available for class /SCTM/CL_LANE including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Inheritance
This OO class has a superclass assigned to it, which means it will inherit its objects and methods. The superclass for /SCTM/CL_LANE is /SCTM/CL_BASE_TRIPMethod list of /SCTM/CL_LANE SAP class
A method is a coding block that performs a certain procedure (i.e. ABAP functionality) on an object within the overall SAP class. In simple terms if the object is an SAP database table a method could be the procedure to add a record or to delete a record. If you are new to OO in many respects, the implementation of a method is similar to a function module and can be called in a very similar way using CALL METHOD.
Instead of "CALL FUNCTION", Methods are referenced using the following syntax: CALL METHOD =>methodname EXPORTING/IMPORTING...
| Method Name | Description | Visability |
| CHECK_LANE_VALIDITY | Check if most specific lane still valid | Public |
| CALL METHOD /sctm/cl_lane=>CHECK_LANE_VALIDITY...more details | ||
| CLONE | Generate Duplicate | Public |
| CALL METHOD /sctm/cl_lane=>CLONE...more details | ||
| CONSTRUCTOR | Private | |
| CALL METHOD /sctm/cl_lane=>CONSTRUCTOR...more details | ||
| ESTIMATE_DIST_DUR | for the selected objects | Public |
| CALL METHOD /sctm/cl_lane=>ESTIMATE_DIST_DUR...more details | ||
| ESTIMATE_TIME_INTERVAL | Estimate Transportation Period on Basis of Start or End Time | Public |
| CALL METHOD /sctm/cl_lane=>ESTIMATE_TIME_INTERVAL...more details | ||
| GET_EXISTING_LOCATION | Get existing Location | Private |
| CALL METHOD /sctm/cl_lane=>GET_EXISTING_LOCATION...more details | ||
|
| ||
| GET_LANE | Transportation Lane: 2 Locations, Means of Transport, Period | Public |
| CALL METHOD /sctm/cl_lane=>GET_LANE...more details | ||
| GET_LOC_FROM | First Location in Given Direction | Public |
| CALL METHOD /sctm/cl_lane=>GET_LOC_FROM...more details | ||
| GET_LOC_TO | Second Location in Given Direction | Public |
| CALL METHOD /sctm/cl_lane=>GET_LOC_TO...more details | ||
| READ_LANES | Mass Reading from Database | Public |
| CALL METHOD /sctm/cl_lane=>READ_LANES...more details | ||
| SET_COSTS | Set Cost of Lane object | Public |
| CALL METHOD /sctm/cl_lane=>SET_COSTS...more details | ||
| SET_DISTANCE | Set Distance of Lane object | Public |
| CALL METHOD /sctm/cl_lane=>SET_DISTANCE...more details | ||
| SET_DURATION | Set Duration of Lane object | Public |
| CALL METHOD /sctm/cl_lane=>SET_DURATION...more details | ||
| SET_LANE_VALIDITY | Set the Lane validity of the most specific lane | Public |
| CALL METHOD /sctm/cl_lane=>SET_LANE_VALIDITY...more details | ||
| SET_TRANS_END | Transportation End Time | Public |
| CALL METHOD /sctm/cl_lane=>SET_TRANS_END...more details | ||
| SET_TRANS_FROM | Direction-Dependent Transportation Time (Start or End Time) | Public |
| CALL METHOD /sctm/cl_lane=>SET_TRANS_FROM...more details | ||
| SET_TRANS_START | Transportation Start Time | Public |
| CALL METHOD /sctm/cl_lane=>SET_TRANS_START...more details | ||
| SET_TRANS_TO | Direction-Dependent Transportation Time (Start or End Time) | Public |
| CALL METHOD /sctm/cl_lane=>SET_TRANS_TO...more details | ||
/SCTM/CL_LANE attributes
List of attributes within class CL_ABAP_CHAR_UTILITIES. These can be referenced using the following syntax CL_ABAP_CHAR_UTILITIES=>. Although depending on where you are inserting the ABAP code you do need to check if the attribute is public or private.
| Name | Level | Description | Initial Value | Type | Visability |
| MT_LANES | Static Attribute | Positive List: Existing Stages | LIKE /SCTM/TT_AD_LANE_MTR | Private | |
| MT_NO_LANES | Static Attribute | Negative List: Existing Stages | LIKE /SCTM/TT_AD_NO_LANE_MTR | Private | |
| MV_DISTANCE | Instance Attribute | Distance | LIKE /SCMB/DE_DISTANCE | Public | |
| MV_DURATION | Instance Attribute | Duration DB | LIKE /SCMB/DE_DURATION | Private | |
| MV_ID | Instance Attribute | TM Object Name | LIKE /SCMB/DE_ID | Private | |
| MV_LANE_COMPLETE | Instance Attribute | Lane data filled | LIKE BOOLE_D | Public | |
| MV_LANE_VAL_FR | Instance Attribute | Lane validity | LIKE /SCMB/DE_TIMESTAMP | Private | |
| MV_LANE_VAL_TO | Instance Attribute | Lane validity | LIKE /SCMB/DE_TIMESTAMP | Private | |
| MV_TCOST | Instance Attribute | Variable Transportation Costs of a Product | LIKE /SCMB/MDL_TRCOST | Public | |
| MV_TCOST_UOM | Instance Attribute | Unit of Measure for Transportation Costs of a Product | LIKE /SCMB/MDL_TRCOSTUNIT | Public | |
| MV_TRANSPORT_CAL | Instance Attribute | Transportation Calendar | LIKE /SCMB/MDL_TRCAL | Public | |
| MV_TRANS_END | Instance Attribute | Transportation End Time | LIKE /SCMB/DE_TIMESTAMP | Private | |
| MV_TRANS_START | Instance Attribute | Transportation Start Time | LIKE /SCMB/DE_TIMESTAMP | Private | |
| MV_TTYPECOST | Instance Attribute | Distance-Dependent Costs of a Means of Transport (per km) | LIKE /SCMB/MDL_TRTYPECOST | Public |
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