SAP /SCTM/CL_ASSIGNMENT_MANAGER OO Class - Assignment Management including MTR / TSP
/SCTM/CL_ASSIGNMENT_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_ASSIGNMENT_MANAGER 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_ASSIGNMENT_MANAGER is /SCMB/CL_H_ASSIGNMENT_MGRMethod list of /SCTM/CL_ASSIGNMENT_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 |
| CHECK_MTR | Check existence of Means of Transport object for a UID | Public |
| CALL METHOD /sctm/cl_assignment_manager=>CHECK_MTR...more details | ||
| CHECK_TSP | Check existence of Transportation Service Provider | Public |
| CALL METHOD /sctm/cl_assignment_manager=>CHECK_TSP...more details | ||
| COMPLETE_MTR | Creation of Entire Means of Transport Hierarchy | Private |
| CALL METHOD /sctm/cl_assignment_manager=>COMPLETE_MTR...more details | ||
| COMPLETE_TSP | Creation of All Transportation Service Providers | Private |
| CALL METHOD /sctm/cl_assignment_manager=>COMPLETE_TSP...more details | ||
| CONSTRUCTOR | CONSTRUCTOR | Public |
| CALL METHOD /sctm/cl_assignment_manager=>CONSTRUCTOR...more details | ||
| CREATE_MTR | Create Means of Transport object for a GUID | Public |
| CALL METHOD /sctm/cl_assignment_manager=>CREATE_MTR...more details | ||
|
| ||
| CREATE_TSP | Create Transportation Service Provider object for a GUID | Public |
| CALL METHOD /sctm/cl_assignment_manager=>CREATE_TSP...more details | ||
| FIND_ASSIGNMENTS | Assignment Options for a Geographical Object | Public |
| CALL METHOD /sctm/cl_assignment_manager=>FIND_ASSIGNMENTS...more details | ||
| GET_MTR | Get Means of Transport object for a UID | Public |
| CALL METHOD /sctm/cl_assignment_manager=>GET_MTR...more details | ||
| GET_MTR_FOR_MOT | Get Means of Transport for specific Mode of Transport | Public |
| CALL METHOD /sctm/cl_assignment_manager=>GET_MTR_FOR_MOT...more details | ||
| GET_TSP | Get Transportation Service Provider object for a GUID | Public |
| CALL METHOD /sctm/cl_assignment_manager=>GET_TSP...more details | ||
| READ | For Subsequent Determination (Combined Mass Access) | Public |
| CALL METHOD /sctm/cl_assignment_manager=>READ...more details | ||
| READ_ASSIGNMENTS | For Subsequent Determin. of These Assignments (Mass Access) | Private |
| CALL METHOD /sctm/cl_assignment_manager=>READ_ASSIGNMENTS...more details | ||
| READ_CONDITIONS | For Subsequent Determin. of These Restrictions (Mass Access) | Private |
| CALL METHOD /sctm/cl_assignment_manager=>READ_CONDITIONS...more details | ||
| WIDE_CAST_GEO | Dynamic Conversion of Geographical Object | Public |
| CALL METHOD /sctm/cl_assignment_manager=>WIDE_CAST_GEO...more details | ||
| WIDE_CAST_MTR | Dynamic Conversion of Means of Transport | Public |
| CALL METHOD /sctm/cl_assignment_manager=>WIDE_CAST_MTR...more details | ||
/SCTM/CL_ASSIGNMENT_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 |
| MT_GEO_MTR | Instance Attribute | Number of Assignments: Geographical Object -> MTr | LIKE /SCMB/TT_AD_GEOCOMP | Private | |
| MT_GEO_MTR_TSP | Instance Attribute | Adapter: Quantity of Geo. -> MTr/TSP | LIKE /SCTM/TT_AD_GEO_MTR_TSP | Private | |
| MT_MTRS | Instance Attribute | Mapping: MTr UID -> MTr Object | LIKE /SCTM/TT_MAP_MTR_UID_OBJ | Private | |
| MT_TSPS | Instance Attribute | Mapping: TSP GUID -> TSP Object | LIKE /SCTM/TT_MAP_TSP_GUID_OBJ | Private | |
| MV_ASSIGNMENTS_ACTIVE | Instance Attribute | Enable logic of assignments | ABAP_FALSE | LIKE BOOLE_D | Public |
| MV_MTR_COMPLETE | Instance Attribute | MTR completely read? | ABAP_FALSE | LIKE BOOLE_D | Private |
| MV_TSP_COMPLETE | Instance Attribute | TSP completely read? | ABAP_FALSE | LIKE BOOLE_D | 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