SAP /SCTM/CL_ROUTE_MANAGER OO Class - Administration of Routes
/SCTM/CL_ROUTE_MANAGER 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_ROUTE_MANAGER including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Method list of /SCTM/CL_ROUTE_MANAGER 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 |
| ASSIGN_LEGS_TO_ROUTES | Assign given Legs to Routes | Public |
| CALL METHOD /sctm/cl_route_manager=>ASSIGN_LEGS_TO_ROUTES...more details | ||
| CHECK_ROUTE_RESTRICTS | Utility Method for Finding Route Paths | Private |
| CALL METHOD /sctm/cl_route_manager=>CHECK_ROUTE_RESTRICTS...more details | ||
| CONSTRUCTOR | Private | |
| CALL METHOD /sctm/cl_route_manager=>CONSTRUCTOR...more details | ||
| FIND_COMMON_CD_ROUTES | Filter Out Common Cross-Docking Routes | Public |
| CALL METHOD /sctm/cl_route_manager=>FIND_COMMON_CD_ROUTES...more details | ||
| FIND_COMMON_ROUTES | Filter Out Common (Linear) Routes | Public |
| CALL METHOD /sctm/cl_route_manager=>FIND_COMMON_ROUTES...more details | ||
| FIND_INNER_ROUTE_EDGE | Utility Method for Constructing CD Network: Inner Edge | Private |
| CALL METHOD /sctm/cl_route_manager=>FIND_INNER_ROUTE_EDGE...more details | ||
|
| ||
| FIND_LEG_PATH | All Leg Paths in Cross-Docking Network | Public |
| CALL METHOD /sctm/cl_route_manager=>FIND_LEG_PATH...more details | ||
| FIND_OUTER_ROUTE_EDGE | Utility Method for Constructing CD Network: Outer Edge | Private |
| CALL METHOD /sctm/cl_route_manager=>FIND_OUTER_ROUTE_EDGE...more details | ||
| FIND_ROUTE_PATHS | All Route Paths in Cross-Docking Network | Public |
| CALL METHOD /sctm/cl_route_manager=>FIND_ROUTE_PATHS...more details | ||
| FIND_ROUTE_RELATIONS | Construction of Route Hierarchy and Cross-Docking Network | Public |
| CALL METHOD /sctm/cl_route_manager=>FIND_ROUTE_RELATIONS...more details | ||
| GENERATE_LEG_STOPS | Add Stops to Given Legs If Required | Public |
| CALL METHOD /sctm/cl_route_manager=>GENERATE_LEG_STOPS...more details | ||
| GET_BASIC_ROUTE | Create Abstract Route for GUID | Public |
| CALL METHOD /sctm/cl_route_manager=>GET_BASIC_ROUTE...more details | ||
| GET_BASIC_ROUTES | Create (Complete) Routes for GUIDs | Public |
| CALL METHOD /sctm/cl_route_manager=>GET_BASIC_ROUTES...more details | ||
| GET_CD_ROUTE | Create Cross-Docking Route for GUID | Public |
| CALL METHOD /sctm/cl_route_manager=>GET_CD_ROUTE...more details | ||
| GET_CD_ROUTES | Create (Complete) Routes for GUIDs | Public |
| CALL METHOD /sctm/cl_route_manager=>GET_CD_ROUTES...more details | ||
| GET_DIRECT_PARENT_ROUTES | Routes Directly Superior to Given Routes | Public |
| CALL METHOD /sctm/cl_route_manager=>GET_DIRECT_PARENT_ROUTES...more details | ||
| GET_EDGE | Utility Method for Edge of Graph | Private |
| CALL METHOD /sctm/cl_route_manager=>GET_EDGE...more details | ||
| GET_LOC_ROUTES | All Routes That Start or End at a Location | Public |
| CALL METHOD /sctm/cl_route_manager=>GET_LOC_ROUTES...more details | ||
| GET_NODE | Utility Method for Node of Graph | Private |
| CALL METHOD /sctm/cl_route_manager=>GET_NODE...more details | ||
| GET_PARENT_ROUTES | Higher-Level Routes for Given Routes | Public |
| CALL METHOD /sctm/cl_route_manager=>GET_PARENT_ROUTES...more details | ||
| GET_ROUTE | Create Route for a GUID | Public |
| CALL METHOD /sctm/cl_route_manager=>GET_ROUTE...more details | ||
| GET_ROUTES | Create (Complete) Routes for GUIDs | Public |
| CALL METHOD /sctm/cl_route_manager=>GET_ROUTES...more details | ||
| GET_ROUTE_EDGE | Utility Method for Edge in Cross-Docking Network | Private |
| CALL METHOD /sctm/cl_route_manager=>GET_ROUTE_EDGE...more details | ||
| GET_ROUTE_IF_EXISTS | Route for a GUID If it Exists Already | Private |
| CALL METHOD /sctm/cl_route_manager=>GET_ROUTE_IF_EXISTS...more details | ||
| GET_ROUTE_NODE | Utility Method for Node in Cross-Docking Network | Private |
| CALL METHOD /sctm/cl_route_manager=>GET_ROUTE_NODE...more details | ||
/SCTM/CL_ROUTE_MANAGER 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 |
| MO_GEOGRAPHY | Instance Attribute | Administration of Geographical Objects | LIKE /SCTM/CL_GEOGRAPHY | Public | |
| MO_ROUTE_GRAPH | Instance Attribute | Cross-Docking Network | LIKE /SCMB/CL_GRAPH | Public | |
| MT_ROUTES | Instance Attribute | Mapping: Route_Guid -> Route_Object | LIKE /SCTM/TT_MAP_ROUTE_GUID_OBJ | Private |
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