SAP /BCV/CL_FND_LOG OO Class - Log
/BCV/CL_FND_LOG 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 /BCV/CL_FND_LOG 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 /BCV/CL_FND_LOG 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_EXCEPTION | Add Exception to Log | Public |
| CALL METHOD /bcv/cl_fnd_log=>ADD_EXCEPTION...more details | ||
| ADD_MESSAGE | Add Message to Log | Public |
| CALL METHOD /bcv/cl_fnd_log=>ADD_MESSAGE...more details | ||
| CLEAR | Clear Content of Log | Public |
| CALL METHOD /bcv/cl_fnd_log=>CLEAR...more details | ||
| CONSTRUCTOR | Constructor | Public |
| CALL METHOD /bcv/cl_fnd_log=>CONSTRUCTOR...more details | ||
| DISPLAY | Display Message Log | Public |
| CALL METHOD /bcv/cl_fnd_log=>DISPLAY...more details | ||
| GET_BAL_DPROF | Get BAL Display Profile | Private |
| CALL METHOD /bcv/cl_fnd_log=>GET_BAL_DPROF...more details | ||
|
| ||
| GET_MESSAGE_TABLE | Get current table of messages (MT_MESSAGE) | Public |
| CALL METHOD /bcv/cl_fnd_log=>GET_MESSAGE_TABLE...more details | ||
| GET_NO_OF_ERR_MESS | Get Overall Number of Error Messages | Public |
| CALL METHOD /bcv/cl_fnd_log=>GET_NO_OF_ERR_MESS...more details | ||
| GET_NO_OF_INFO_MESS | Get Overall Number of Information Messages | Public |
| CALL METHOD /bcv/cl_fnd_log=>GET_NO_OF_INFO_MESS...more details | ||
| GET_NO_OF_MESS | Get Overall Number of Messages | Public |
| CALL METHOD /bcv/cl_fnd_log=>GET_NO_OF_MESS...more details | ||
| GET_NO_OF_WARN_MESS | Get Overall Number of Warning Messages | Public |
| CALL METHOD /bcv/cl_fnd_log=>GET_NO_OF_WARN_MESS...more details | ||
| IS_MESSAGE_CONTAINED | Check Whether Given Message is Already Contained in Log | Public |
| CALL METHOD /bcv/cl_fnd_log=>IS_MESSAGE_CONTAINED...more details | ||
| SPLIT_TEXT_TO_MSGV | Splits Given Text into Message Variables | Private |
| CALL METHOD /bcv/cl_fnd_log=>SPLIT_TEXT_TO_MSGV...more details | ||
| WRITE | Save Messages to Database | Public |
| CALL METHOD /bcv/cl_fnd_log=>WRITE...more details | ||
| WRITE_TO_BAL | Write Messages to BAL | Private |
| CALL METHOD /bcv/cl_fnd_log=>WRITE_TO_BAL...more details | ||
/BCV/CL_FND_LOG 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_OBJECT | Constant | Log Object 'BCV' | 'BCV' | LIKE BALOBJ_D | Public |
| GC_SUBOBJ_FND_MIGRATION | Constant | Log Subobject 'FND Migration' | 'FND_MIGRATION' | LIKE BALSUBOBJ | Public |
| GC_SUBOBJ_QRM_CACHE | Constant | Log Subobject 'QRM Cache' | 'QRM_CACHE' | LIKE BALSUBOBJ | Public |
| GC_SUBOBJ_SIN_CONN | Constant | Log Subobject 'FND Migration' | 'SIN_CONNECTOR' | LIKE BALSUBOBJ | Public |
| GT_DPROF_BUFFER | Static Attribute | BAL Display Profile Buffer | LIKE TY_T_DPROF_BUFFER | Private | |
| MT_MESSAGE | Instance Attribute | Message Table | LIKE /BCV/T_FND_MESSAGE | Private | |
| MV_NEXT_SEQNO | Instance Attribute | Message Sequence Number | LIKE /BCV/FND_MESS_SEQNO | Private | |
| MV_NO_OF_ERR | Instance Attribute | Number of Error Messages | LIKE I | Private | |
| MV_NO_OF_INFO | Instance Attribute | Number of Information Messages | LIKE I | Private | |
| MV_NO_OF_MESS | Instance Attribute | Number of Messages | LIKE I | Private | |
| MV_NO_OF_WARN | Instance Attribute | Number of Warning Messages | LIKE I | Private |
/BCV/CL_FND_LOG types
TY_S_DPROF_BUFFER - Display Profile Buffer Structure TypeTY_T_DPROF_BUFFER - Display Profile Buffer Table Type
Links to Related Class(s)
/BCV/CL_...Full list of available SAP object classes
Search for further information about these or an SAP related objects