SWLT_S_SQLM_LINE is an SAP Structure so does not store data like a database table does but can be used to process "Line to display in the SQL Monitor Details View" Information within sap ABAP programs. This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.
i.e. DATA: wa_SWLT_S_SQLM_LINE TYPE SWLT_S_SQLM_LINE .
Below is the documentation avaialable and full details of the fields which make up this Structure.
You can view further information about this via relevant transactions such as SE11 or SE80. Also check out the Comments section below to view or add related contributions and example screen shots.
Field | Component Type | Data Type | length (Decimals) | Check table | Description | Conversion Routine |
TABLE_NAMES | SWLT_D_RTM_TABLE_NAMES | STRING | Table Names | |||
.INCLUDE | SWLT_S_SQLM_PART | SWLT_S_SQLM_PART | ||||
SQLM_TOTAL_TIME | SQLMRUNTIMESUM | DEC | 31(3) | SQL Monitor: Total Execution Time | ||
SQLM_EXECUTIONS_NUM | SQLMEXECNT | INT4 | 10 | SQL Monitor: Total Number of Executions | ||
SQLM_AVERAGE_TIME | SQLMRUNTIMEAVG | DEC | 31(3) | SQL Monitor: Mean Value of Execution Time | ||
SQLM_MIN_TIME | SQLMRUNTIMEMIN | DEC | 31(3) | SQL Monitor: Minimum Value of Execution Time | ||
SQLM_MAX_TIME | SQLMRUNTIMEMAX | DEC | 31(3) | SQL Monitor: Maximum Value of Execution Time | ||
SQLM_TIME_DEVIATION | SQLMRUNTIMEDEV | DEC | 31(3) | SQL Monitor: Standard Deviation of Execution Time | ||
SQLM_DB_COUNT | SQLMDBCOUNTSUM | DEC | 31 | SQL Monitor: Total Fetched or Modified Records | ||
SQLM_DB_COUNT_AVERAGE | SQLMDBCOUNTAVG | DEC | 31(3) | SQL Monitor: Mean Value of Fetched / Modified Records | ||
SQLM_DB_COUNT_MIN | SQLMDBCOUNTMIN | INT4 | 10 | SQL Monitor: Minimum Value of Fetched / Modified Records | ||
SQLM_DB_COUNT_MAX | SQLMDBCOUNTMAX | INT4 | 10 | SQL Monitor: Maximum Value of Fetched / Modified Records | ||
SQLM_DB_COUNT_DEVIATION | SQLMDBCOUNTDEV | DEC | 31(3) | SQL Monitor: Standard Deviation of Fetched / Modif. Records | ||
SQLM_ROOT_ID | SQLMROOTNAME | CHAR | 60 | SQL Monitor: Request Entry Point (Transaction, etc.) | ||
SQLM_ROOT_TYPE | SQLMROOTTYPE | CHAR | 1 | SQL Monitor: Request Type | ||
SQLM_STMTKIND | SQLMSTMTKIND | CHAR | 1 | SQL Monitor: SQL Operation | ||
SQLM_STMTKIND_DESCR | SQLMSTMTKIND_TXT | CHAR | 30 | SQL Monitor: SQL Operation | ||
SQLM_ROOT_TYPE_DESCR | SQLMROOTTYPE_TXT | CHAR | 30 | SQL Monitor: Request Type | ||
SQLM_INTERNAL_SESSIONS | SQLMROLLAREACNT | INT4 | 10 | SQL Monitor: Internal Sessions Affected | ||
SQLM_EXC_INT_SESSIONS_QUOT | SQLMEXECNTROLLAREACNT | DEC | 31(3) | SQL Monitor: Executions per Internal Sessions |
Key field | |
Non-key field |