SAP /BCV/CL_QRM_QUERY_STAT OO Class - Query Statistics
/BCV/CL_QRM_QUERY_STAT 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_QRM_QUERY_STAT 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_QRM_QUERY_STAT 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 |
| CLASS_CONSTRUCTOR | CLASS_CONSTRUCTOR | Public |
| CALL METHOD /bcv/cl_qrm_query_stat=>CLASS_CONSTRUCTOR...more details | ||
| DELETE_STATISTICS | Delete Query Statistics from DB | Public |
| CALL METHOD /bcv/cl_qrm_query_stat=>DELETE_STATISTICS...more details | ||
| READ_STATISTICS | Read Query Statistics from DB | Public |
| CALL METHOD /bcv/cl_qrm_query_stat=>READ_STATISTICS...more details | ||
| START_MEASUREMENT | Start Measurement of Query Processing | Public |
| CALL METHOD /bcv/cl_qrm_query_stat=>START_MEASUREMENT...more details | ||
| STOP_MEASUREMENT | Stop Measurement of Query Processing | Public |
| CALL METHOD /bcv/cl_qrm_query_stat=>STOP_MEASUREMENT...more details | ||
| UPDATE_STATISTICS | Update Query Statistics in DB by Latest Measurement | Public |
| CALL METHOD /bcv/cl_qrm_query_stat=>UPDATE_STATISTICS...more details | ||
|
| ||
/BCV/CL_QRM_QUERY_STAT 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_QSTAT_DB | Constant | Name of Query Statistics Table in DB | '/BCV/D_QSTAT' | LIKE STRING | Private |
| GO_TIMER | Static Attribute | Timer | LIKE IF_ABAP_RUNTIME | Private | |
| GV_ABORTED | Static Attribute | Query Processing Aborted | LIKE BOOLE_D | Private | |
| GV_CACHED | Static Attribute | Query Result Read from Cache | LIKE BOOLE_D | Private | |
| GV_QUERY_ID | Static Attribute | ID of Query Currently Measured | LIKE /BCV/QRM_QUERY_ID | Private | |
| GV_RESULT_LINES | Static Attribute | Number of Query Result Lines | LIKE INT4 | Private | |
| GV_START_DATE | Static Attribute | Date of Measurement Start | LIKE SYDATUM | Private | |
| GV_START_TVALUE | Static Attribute | Value of Timer at Start of Measurement | LIKE INT4 | Private | |
| GV_STOP_TVALUE | Static Attribute | Value of Timer at Stop of Measurement | LIKE INT4 | Private |
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