SAP /SCMTMS/CL_APPLOG_HELPER OO Class - TM Application Log Helper Class
/SCMTMS/CL_APPLOG_HELPER 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 /SCMTMS/CL_APPLOG_HELPER 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 /SCMTMS/CL_APPLOG_HELPER 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_APPLOG_MSG | Add application log message to FRW message object | Public |
| CALL METHOD /scmtms/cl_applog_helper=>ADD_APPLOG_MSG...more details | ||
| ADD_BAPIRET2APPLOG_BO | Add BAPIRET2 table to an Application Log BO inst. | Public |
| CALL METHOD /scmtms/cl_applog_helper=>ADD_BAPIRET2APPLOG_BO...more details | ||
| ADD_DIRECT_APPLOG_BO | Add an application log item table to an Appl. Log BO inst. | Public |
| CALL METHOD /scmtms/cl_applog_helper=>ADD_DIRECT_APPLOG_BO...more details | ||
| ADD_EXCEPTION2APPLOG_BO | Add an exception to an Applocation Log Instance | Public |
| CALL METHOD /scmtms/cl_applog_helper=>ADD_EXCEPTION2APPLOG_BO...more details | ||
| ADD_EXCEPTION2FRWMSG | Add exception to message object as text | Private |
| CALL METHOD /scmtms/cl_applog_helper=>ADD_EXCEPTION2FRWMSG...more details | ||
| ADD_FRWMSG2APPLOG_BO | Add a FRW message object to an Application Log BO inst. | Public |
| CALL METHOD /scmtms/cl_applog_helper=>ADD_FRWMSG2APPLOG_BO...more details | ||
|
| ||
| ADD_SYMSG2APPLOG_BO | Add a new message to an Application Log BO inst. | Public |
| CALL METHOD /scmtms/cl_applog_helper=>ADD_SYMSG2APPLOG_BO...more details | ||
| ADD_TEXT2APPLOG_BO | Add text table to an Application Log BO inst. | Public |
| CALL METHOD /scmtms/cl_applog_helper=>ADD_TEXT2APPLOG_BO...more details | ||
| ADD_TO_BAL | Add message to BAL directly | Private |
| CALL METHOD /scmtms/cl_applog_helper=>ADD_TO_BAL...more details | ||
| APPLOG_CREATE | Create App Log in Simulation Mode | Public |
| CALL METHOD /scmtms/cl_applog_helper=>APPLOG_CREATE...more details | ||
| APPLOG_DISPLAY | Public | |
| CALL METHOD /scmtms/cl_applog_helper=>APPLOG_DISPLAY...more details | ||
| CLEANUP_APPLOG | Cleanup applog after cleanup transaction | Public |
| CALL METHOD /scmtms/cl_applog_helper=>CLEANUP_APPLOG...more details | ||
| DETERMINE_PROBLEM_CLASS | Determine problem class for a message | Private |
| CALL METHOD /scmtms/cl_applog_helper=>DETERMINE_PROBLEM_CLASS...more details | ||
| FILL_APPLOG_CONTEXT | Fill application log context structure | Public |
| CALL METHOD /scmtms/cl_applog_helper=>FILL_APPLOG_CONTEXT...more details | ||
| FLUSH_APPLOG_QUEUE | Write queued messages into AppLog (IV_QUEUE_MSG) | Public |
| CALL METHOD /scmtms/cl_applog_helper=>FLUSH_APPLOG_QUEUE...more details | ||
| FRWMSG_CONVERT | Convert if_frw_message(s) to bapiret2 / appl. log format | Private |
| CALL METHOD /scmtms/cl_applog_helper=>FRWMSG_CONVERT...more details | ||
| HANDLE_EVENT_END_SAVE | Event Handler for END_SAVE of Buffer Dispatcher | Protected |
| CALL METHOD /scmtms/cl_applog_helper=>HANDLE_EVENT_END_SAVE...more details | ||
| INIT_APPLOG_BO | Initialize AppLog - do not use directly! | Public |
| CALL METHOD /scmtms/cl_applog_helper=>INIT_APPLOG_BO...more details | ||
| PREPARE_ADD_APPLOG | Preparation steps to add messages to application log | Private |
| CALL METHOD /scmtms/cl_applog_helper=>PREPARE_ADD_APPLOG...more details | ||
| PREPARE_APPLOG_DISPLAY_PROFILE | Prepare options to display application log | Public |
| CALL METHOD /scmtms/cl_applog_helper=>PREPARE_APPLOG_DISPLAY_PROFILE...more details | ||
| SET_APPLOG_MODE | Set Application Log Mode (active/inactive) | Public |
| CALL METHOD /scmtms/cl_applog_helper=>SET_APPLOG_MODE...more details | ||
/SCMTMS/CL_APPLOG_HELPER 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_SAVE_HANDLER | Static Attribute | TM Application Log Helper Class | LIKE /SCMTMS/CL_APPLOG_HELPER | Private | |
| MS_LAST_REG | Static Attribute | Application log registry | LIKE TY_REG | Private | |
| MT_APPLOG_QUEUE | Static Attribute | Application Log Message Queue | LIKE /BOBF/T_FRW_MODIFICATION | Private | |
| MT_KNOWN_MSG_KEY | Static Attribute | Keys of known messages | LIKE /BOBF/T_FRW_KEY | Private | |
| MT_REGISTRY | Static Attribute | Application log registry | LIKE TT_REG | Private | |
| MV_APPLOG_MSGNUMBER | Static Attribute | Application log: Internal message serial number | 1 | LIKE BALMNR | Private |
| MV_LAST_MSG_BO_KEY | Static Attribute | Application Log: Last BO | LIKE /BOBF/OBM_BO_KEY | Private | |
| MV_LAST_MSG_ORIGINATOR | Static Attribute | Application Log: Last Msg. Originator | LIKE STRING | Private | |
| SC_AL_DETLEV_DEFAULT | Constant | Application Log: Default Detail Level | '2' | LIKE BALLEVEL | Public |
| SC_AL_DETLEV_DETAIL | Constant | Application Log: Detail Level | '3' | LIKE BALLEVEL | Public |
| SC_AL_DETLEV_SUMMARY | Constant | Application Log: Summary Detail Level | '1' | LIKE BALLEVEL | Public |
| SC_AL_DETLEV_TECHNICAL | Constant | Application Log: Technical Detail Level | '9' | LIKE BALLEVEL | Public |
| SC_AL_OBJ_TM | Constant | Application log: Object name (Application code) | '/SCMTMS/TMS' | LIKE BALOBJ_D | Public |
| SC_AL_ORIGINATOR_FUBUILDER | Constant | Application Log Message Originator | 'FUB' | LIKE STRING | Public |
| SC_AL_ORIGINATOR_OPTIMIZER | Constant | Application Log Message Originator | 'OPTIMIZER' | LIKE STRING | Public |
| SC_AL_PROBCLASS_ADD_INFO | Constant | Application log: Additional Information problem class | '4' | LIKE BALPROBCL | Public |
| SC_AL_PROBCLASS_IMPORTANT | Constant | Application log: Important problem class | '2' | LIKE BALPROBCL | Public |
| SC_AL_PROBCLASS_MEDIUM | Constant | Application log: Medium problem class | '3' | LIKE BALPROBCL | Public |
| SC_AL_PROBCLASS_OTHERS | Constant | Application log: Others problem class | SPACE | LIKE BALPROBCL | Public |
| SC_AL_PROBCLASS_VERY_IMPORTANT | Constant | Application log: Very important problem class | '1' | LIKE BALPROBCL | Public |
| SC_AL_SOBJ_ACC | Constant | Application Log: Accruals posting | 'ACCR_POSTING' | LIKE BALSUBOBJ | Public |
| SC_AL_SOBJ_BF | Constant | Application Log: Basic Functions | 'BF' | LIKE BALSUBOBJ | Public |
| SC_AL_SOBJ_BP | Constant | Application Log: Batch Processing | 'BP' | LIKE BALSUBOBJ | Public |
| SC_AL_SOBJ_BW | Constant | Application Log: BW Extraction | 'BW' | LIKE BALSUBOBJ | Public |
| SC_AL_SOBJ_CHACO | Constant | Application Log: Change Controller | 'CHACO' | LIKE BALSUBOBJ | Public |
| SC_AL_SOBJ_CS | Constant | Application Log: Communication Services | 'CS' | LIKE BALSUBOBJ | Public |
| SC_AL_SOBJ_DG | Constant | Application Log: Dangerous Goods | 'DG' | LIKE BALSUBOBJ | Public |
| SC_AL_SOBJ_DSO | Constant | Application Log: Direct Shipment Costs | 'DSO' | LIKE BALSUBOBJ | Public |
| SC_AL_SOBJ_EM | Constant | Application Log: Event management | 'EM' | LIKE BALSUBOBJ | Public |
| SC_AL_SOBJ_EXIM | Constant | Application Log: Export - Import | 'EXIM' | LIKE BALSUBOBJ | Public |
| SC_AL_SOBJ_FUB | Constant | Application Log: Freight Unit Builder | 'FUB' | LIKE BALSUBOBJ | Public |
| SC_AL_SOBJ_GNT | Constant | Application Log: Subobject | 'GNT' | LIKE BALSUBOBJ | Public |
| SC_AL_SOBJ_INT | Constant | Application Log: ERP Integration | 'INT' | LIKE BALSUBOBJ | Public |
| SC_AL_SOBJ_INVVAR | Constant | Application Log: Freight Invoice Variance | 'INV_VARIANCE' | LIKE BALSUBOBJ | Public |
| SC_AL_SOBJ_MD | Constant | Application Log: Master Data | 'MD' | LIKE BALSUBOBJ | Public |
| SC_AL_SOBJ_OM | Constant | Application Log: Order Management | 'OM' | LIKE BALSUBOBJ | Public |
| SC_AL_SOBJ_PLN | Constant | Application Log: Planning | 'PLN' | LIKE BALSUBOBJ | Public |
| SC_AL_SOBJ_SCT | Constant | Application Log: Subcontracting | 'SCT' | LIKE BALSUBOBJ | Public |
| SC_AL_SOBJ_SP | Constant | Application Log: Create and Update Service Product | 'SP' | LIKE BALSUBOBJ | Public |
| SC_AL_SOBJ_TCM | Constant | Application Log: Transp. Charge Management | 'TCM' | LIKE BALSUBOBJ | Public |
| SC_AL_SOBJ_TRIG | Constant | Application Log: Trigger Handling | 'TRIG' | LIKE BALSUBOBJ | Public |
| SC_AL_S_LEVEL | Constant | LIKE | Public | ||
| SC_APPLOG_CONTEXT | Constant | LIKE | Public | ||
| SC_APPLOG_READ_METH | Constant | LIKE | Public | ||
| SC_CTX_APPLOG_EXTNO | Constant | '02' | LIKE /SCMTMS/S_APPLOG_CONTEXT-OBJECT | Public | |
| SC_CTX_APPLOG_HANDLE | Constant | '01' | LIKE /SCMTMS/S_APPLOG_CONTEXT-OBJECT | Public |
/SCMTMS/CL_APPLOG_HELPER types
TT_REG -TY_MSGTY_PROBCLS_PAR - ParStruct for assigning msg. types (S,I,W,E) to ProbClass
TY_REG - Application log registry
T_APPLOG_KEY -
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects