SAP /GSINS/CL_BR_APPLOG OO Class - Brazil: Application Log
/GSINS/CL_BR_APPLOG 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 /GSINS/CL_BR_APPLOG 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 /GSINS/CL_BR_APPLOG 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_BAPI_ERRORS | Add Several Messages from BAPI Error Table | Public |
| CALL METHOD /gsins/cl_br_applog=>ADD_BAPI_ERRORS...more details | ||
| ADD_FREE_TEXT | Add Free Text to Application Log | Public |
| CALL METHOD /gsins/cl_br_applog=>ADD_FREE_TEXT...more details | ||
| ADD_MESSAGE | Add message into application log | Public |
| CALL METHOD /gsins/cl_br_applog=>ADD_MESSAGE...more details | ||
| CONSTRUCTOR | Constructor | Public |
| CALL METHOD /gsins/cl_br_applog=>CONSTRUCTOR...more details | ||
| CONTAINS_ERROR_MSG | Returns abap_true log contains error message | Public |
| CALL METHOD /gsins/cl_br_applog=>CONTAINS_ERROR_MSG...more details | ||
| DELETE_LOG | Delete application log | Private |
| CALL METHOD /gsins/cl_br_applog=>DELETE_LOG...more details | ||
|
| ||
| DELETE_LOG_ALL | Clear Application log(Delete All) | Private |
| CALL METHOD /gsins/cl_br_applog=>DELETE_LOG_ALL...more details | ||
| DISPLAY_LOG | Display Application Log | Public |
| CALL METHOD /gsins/cl_br_applog=>DISPLAY_LOG...more details | ||
| FREE_COPIED_LOG | Free copied log | Private |
| CALL METHOD /gsins/cl_br_applog=>FREE_COPIED_LOG...more details | ||
| FREE_LOG_HANDLER | Free application log handler | Public |
| CALL METHOD /gsins/cl_br_applog=>FREE_LOG_HANDLER...more details | ||
| GET_INSTANCE | Get application log handler | Public |
| CALL METHOD /gsins/cl_br_applog=>GET_INSTANCE...more details | ||
| GET_LOG_HANDLER | Retrieve application log instance | Private |
| CALL METHOD /gsins/cl_br_applog=>GET_LOG_HANDLER...more details | ||
| GET_MESSAGES | Get messages from application log handler | Public |
| CALL METHOD /gsins/cl_br_applog=>GET_MESSAGES...more details | ||
| RELOAD_LOG | Reload application log | Private |
| CALL METHOD /gsins/cl_br_applog=>RELOAD_LOG...more details | ||
| SAVE_TO_DB | Save application log in database | Public |
| CALL METHOD /gsins/cl_br_applog=>SAVE_TO_DB...more details | ||
| SUPPRESS_LOG | Disables Logging | Public |
| CALL METHOD /gsins/cl_br_applog=>SUPPRESS_LOG...more details | ||
/GSINS/CL_BR_APPLOG 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 |
| GC_APPL_LOG_PAR_TABNAME | Constant | Application log: Parameters | 'TABNAME' | LIKE BALPAR | Private |
| GC_LOG_PAR_MSG_LEVEL | Constant | Application log: Parameters | 'MSGLEVEL' | LIKE BALPAR | Private |
| GC_MSGTY_ERR | Constant | Message Type - Error | 'E' | LIKE SYMSGTY | Public |
| GC_MSGTY_SUCC | Constant | Message Type - Success | 'S' | LIKE SYMSGTY | Public |
| GC_MSGTY_WARN | Constant | Message Type - Warning | 'W' | LIKE SYMSGTY | Public |
| GC_OBJ | Constant | Application Log: Object Name (Application Code) | '/GSINS/BR_WHT' | LIKE BALOBJ_D | Public |
| GC_PROBCLASS_CRIT | Constant | Application log: Message problem class | '1' | LIKE BALPROBCL | Public |
| GC_PROBCLASS_HIGH | Constant | Application log: Message problem class | '2' | LIKE BALPROBCL | Public |
| GC_PROBCLASS_LOW | Constant | Application log: Message problem class | '4' | LIKE BALPROBCL | Public |
| GC_PROBCLASS_MEDD | Constant | Application log: Message problem class | '3' | LIKE BALPROBCL | Public |
| GC_SUB_OBJ_EXEMPT | Constant | Sub-object for Report | 'EXEMPT' | LIKE BALSUBOBJ | Public |
| MT_LOG_BUFFER | Static Attribute | LIKE YT_LOG_BUFFER | Protected | ||
| MV_APPLOG_SUPPRESSED | Static Attribute | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | LIKE BOOLE-BOOLE | Private | |
| MV_CURRENT_LEVEL | Instance Attribute | LIKE I | Private | ||
| MV_DETLEVEL | Instance Attribute | Application Log: Level of detail | LIKE BALLEVEL | Protected | |
| MV_FLG_SAVE_DB | Instance Attribute | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | LIKE BOOLE_D | Protected | |
| MV_LOG_EXTNUMBER | Instance Attribute | Application Log: External ID | LIKE BALNREXT | Protected | |
| MV_LOG_HANDLE | Instance Attribute | Application Log: Log Handle | LIKE BALLOGHNDL | Protected | |
| MV_LOG_NUMBER | Instance Attribute | Application log: log number | LIKE BALOGNR | Protected | |
| MV_LOG_OBJECT | Instance Attribute | Application Log: Object Name (Application Code) | LIKE BALOBJ_D | Protected | |
| MV_LOG_SUBOBJECT | Instance Attribute | Application Log: Subobject | LIKE BALSUBOBJ | Protected | |
| MV_MSG_HANDLE | Instance Attribute | Application Log: Message handle | LIKE BALMSGHNDL | Protected | |
| MV_TABNAME | Instance Attribute | Table Name | LIKE TABNAME | Protected |
/GSINS/CL_BR_APPLOG types
YS_LOG_BUFFER -YT_LOG_BUFFER -
Links to Related Class(s)
/GSINS/C...Full list of available SAP object classes
Search for further information about these or an SAP related objects