SAP CL_STCTM_MESSAGES OO Class - Task Manager Messages
CL_STCTM_MESSAGES 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 CL_STCTM_MESSAGES including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Interface Implementation
This OO class is an Interface Implementation, which means it will implement its own version of the methods from implementation class IF_SERIALIZABLE_OBJECTInterface Implementation
This OO class is an Interface Implementation, which means it will implement its own version of the methods from implementation class IF_STCTM_TASK_MESSAGESMethod list of CL_STCTM_MESSAGES 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 |
| ADD_BAPIRET | Add single BAPIRET message to message table | Public |
| CALL METHOD cl_stctm_messages=>ADD_BAPIRET...more details | ||
| ADD_BAPIRETTAB | Add BAPIRET table to message table | Public |
| CALL METHOD cl_stctm_messages=>ADD_BAPIRETTAB...more details | ||
| ADD_EXCEPTION | Add exception to message table | Public |
| CALL METHOD cl_stctm_messages=>ADD_EXCEPTION...more details | ||
| ADD_MESSAGES | Add messages from other message class | Public |
| CALL METHOD cl_stctm_messages=>ADD_MESSAGES...more details | ||
| ADD_SYST | Add system message to message table | Public |
| CALL METHOD cl_stctm_messages=>ADD_SYST...more details | ||
| ADD_T100 | Add T100 message to message table | Public |
| CALL METHOD cl_stctm_messages=>ADD_T100...more details | ||
|
| ||
| ADD_TEXT | Add simple text to message table | Public |
| CALL METHOD cl_stctm_messages=>ADD_TEXT...more details | ||
| APPEND_TO_BAPIRETTAB | Append internal messages to external BAPIRETTAB | Public |
| CALL METHOD cl_stctm_messages=>APPEND_TO_BAPIRETTAB...more details | ||
| CLEAR | Clear message table | Public |
| CALL METHOD cl_stctm_messages=>CLEAR...more details | ||
| DISABLE_SUPPORT_LOG | Disable immediate message persistence | Public |
| CALL METHOD cl_stctm_messages=>DISABLE_SUPPORT_LOG...more details | ||
| ENABLE_SUPPORT_LOG | Persist all messages in case of errors | Public |
| CALL METHOD cl_stctm_messages=>ENABLE_SUPPORT_LOG...more details | ||
| GET_BAPIRETTAB | Get entries as BAPIRET table | Public |
| CALL METHOD cl_stctm_messages=>GET_BAPIRETTAB...more details | ||
| GET_MESSAGES | Get internal message table | Public |
| CALL METHOD cl_stctm_messages=>GET_MESSAGES...more details | ||
| GET_NUMBER_OF_MESSAGES | Get overall number of messages | Public |
| CALL METHOD cl_stctm_messages=>GET_NUMBER_OF_MESSAGES...more details | ||
| GET_STATUS | Get overall status of message table (worst message) | Public |
| CALL METHOD cl_stctm_messages=>GET_STATUS...more details | ||
| _ADD_SOURCE_POS | Add source position to log entry | Private |
| CALL METHOD cl_stctm_messages=>_ADD_SOURCE_POS...more details | ||
| _BUILD_BAL_MSG_PARAMS | Build application log message details parameter | Private |
| CALL METHOD cl_stctm_messages=>_BUILD_BAL_MSG_PARAMS...more details | ||
| _MAKE_MESSAGE_CONSISTENT | Check and correction log message | Private |
| CALL METHOD cl_stctm_messages=>_MAKE_MESSAGE_CONSISTENT...more details | ||
| _WRITE_SUPPORT_LOG | Save messages to application log | Private |
| CALL METHOD cl_stctm_messages=>_WRITE_SUPPORT_LOG...more details | ||
CL_STCTM_MESSAGES 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 |
| DUMMY | Instance Attribute | Dummy string for MESSAGE ... INTO dummy | LIKE STRING | Public | |
| PT_MSG | Instance Attribute | List of Messages | LIKE TT_MSG | Public | |
| PV_SUPLOG_EXTNUMBER | Instance Attribute | LIKE BALNREXT | Private | ||
| PV_SUPLOG_LOGHANDLE | Instance Attribute | LIKE BALLOGHNDL | Private | ||
| PV_SUPLOG_ON_ERROR_ONLY | Instance Attribute | LIKE SAP_BOOL | Private | ||
| PV_SUPLOG_SUBOBJECT | Instance Attribute | LIKE BALSUBOBJ | Private | ||
| PV_WRITE_SUPLOG | Instance Attribute | LIKE SAP_BOOL | Private |
CL_STCTM_MESSAGES types
TS_MSG - MessageTS_SOURCE - Extended source position
TS_SOURCE_POS - Source position
TT_MSG - List of Messages
Links to Related Class(s)
CL_STCTM...Full list of available SAP object classes
Search for further information about these or an SAP related objects