LVC_MONOMS SAP (SYSDBA.MONITOR_OMS) Structure details

Dictionary Type: Structure
Description: SYSDBA.MONITOR_OMS




ABAP Code to SELECT data from LVC_MONOMS
Related tables to LVC_MONOMS
Access table LVC_MONOMS




Structure field list including key, data, relationships and ABAP select examples

LVC_MONOMS is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "SYSDBA.MONITOR_OMS" 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_LVC_MONOMS TYPE LVC_MONOMS.

The LVC_MONOMS table consists of various fields, each holding specific information or linking keys about SYSDBA.MONITOR_OMS data available in SAP. These include METHODE (Name of database procedure called), CALL_CNT (Number of database procedure calls), AVG_RTIME (Average runtime in milliseconds), SUM_RTIME (Total Runtime for All Calls (AvgRuntime * CallCnt)).. See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP LVC_MONOMS structure fields - Full list of fields found in SAP data dictionary

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
IIDGUID of interface that define the methods LC_IIDCHAR40CHAR40
METHODEName of database procedure called LC_METHODECHAR32CHAR32
CALL_CNTNumber of database procedure calls LC_CALLCNTDEC20
AVG_RTIMEAverage runtime in milliseconds LCAVGRTIMEDEC20(3) DEC20_D3
SUM_RTIMETotal Runtime for All Calls (AvgRuntime * CallCnt) LCSUMRTIMEDEC20DEC20
MIN_RTIMESYSDBA.MONITOR.VALUE ADA_VALUEDEC20DEC20
MAX_RTIMESYSDBA.MONITOR.VALUE ADA_VALUEDEC20DEC20
AVGNRTIMEAverage runtime in milliseconds LCAVGRTIMEDEC20(3) DEC20_D3
SUMNRTIMETotal Runtime for All Calls (AvgRuntime * CallCnt) LCSUMRTIMEDEC20DEC20
OMS_DEREFNumber of dereferencings (accesses to object instances) LCOMSDEREFDEC20DEC20
LC_DEREFNo. of dereferencings with liveCache basis layer LC_DEREFDEC20DEC20
KEY_DEREFNumber of dereferencings with key LCKEYDEREFDEC20DEC20
KEY_DEREFV Key Accesses in Versions0
OMS_STORENumber of object instance store operations LCOMSSTOREDEC20DEC20
LC_STORENumber of store operations by liveCache basis LC_STOREDEC20DEC20
OMSDELETENo. of deleted object instances LCOMSDELETDEC20DEC20
LC_DELETENumber of deleted object instances via liveCache basis LC_DELETEDEC20DEC20
LC_LOCKNumber of lock operations LC_LOCKDEC20DEC20
DEREFITERNo.ofDereferences of PersistentObjects via ContainerIterator LCDEREFITDEC20DEC20
LC_LOGHOPSNumber of dereferencings with log access LC_LOGHOPSDEC20DEC20
LCLOGHOPSINo. of Log Accesses for Dereferences via Container Iterator LCLOGHOPSIDEC20DEC20
EXCEPTIONSNumber of C++ exceptions LC_EXCEPTDEC20DEC20
OUTOFDATENumber of out-of-date exceptions LCOUTOFDATDEC20DEC20
TIMEOUTSNumber of timeouts during lockwaits LC_TIMEOUTDEC20DEC20
SUBT_ROLLBNumber of subtransactions that were rolled back LC_STROLLBDEC20DEC20
SUBTCOMMITNumber of subtransactions that were committed LCSTCOMMITDEC20DEC20
MAX_SUBTLMaximum levels of subtransactions LCMAXSUBTLDEC20DEC20
VAROBJLOADNumber of variable length object instances loaded LCVAROBJLDDEC20DEC20
VAROBJSTORNumber of variable length object instances stored LCVAROBJSTDEC20DEC20
AVGVOBSIZEAverage length of an object instance with variable length LCAVGOSIZEDEC20DEC20
OMSCASIZESize of OMS cache in bytes LCOMSCSIZEDEC20DEC20
MAXWAITNCVMaximum wait time for omsNewConistentView LCMAXWNCVDEC20DEC20
MINWAITNCVMinimum wait time for omsNewConistentView LCMINWNCVDEC20DEC20
AVGWAITNCVAverage wait time for omsNewConsistentView LCAVGWNCVDEC20DEC20
MALLOCCNT Number of Memory Requests0
MALLOCMINMinimum Number of Bytes Allocated Using omsMalloc LCMALLOMINDEC20DEC20
MALLOCMAXMaximum Number of Bytes Allocated Using omsMalloc LCMALLOMAXDEC20DEC20
MALLOCAVGAverage Number of Bytes Allocated Using omsMalloc LCMALLOCAVDEC20DEC20
FREECNT Number of Memory Releases0
FREEMINMinimum Number of Bytes Released Using omsFree LCFREEMINDEC20DEC20
FREEMAXMaximum Number of Bytes Released Using omsFree LCFREEMAXDEC20DEC20
FREEAVGAverage Number of Bytes Released Using omsFree LCFREEAVGDEC20DEC20
OUTOFMEMEXOut Of Memory Exceptions LCOUTOFMEMDEC20DEC20
DALLOCMIN Minimum Memory Growth0
DALLOCMAX Maximum Memory Growth0
DALLOCAVG Average Memory Growth0
OMS_TERMS Procedure Calls that Ended with oms_terminate0
MINSTRBRR MIN Read Buffers0
MAXSTRBRR MAX Read Buffers0
AVGSTRBRR AVG Read Buffers0
MINSTR_RR MIN Read Lines0
MAXSTR_RR MAX Read Lines0
AVGSTR_RR AVG Read Lines0
MINSTRBWR MIN Written Buffers0
MAXSTRBWR MAX Written Buffers0
AVGSTRBWR AVG Written Buffers0
MINSTR_RW MIN Written Lines0
MAXSTR_RW MAX Written Lines0
AVGSTR_RW AVG Written Lines0
OMSKEYCHIT Hits in Cache Key Tree0
OMSKEYCMIS Hits in Cache Miss Tree0
OMSKEYVERS Hits in Version Key Tree0
OMSMAXCHLN Maximum Hash Key Length0
OMSREHASH Rehash Operations in OMS Cache0
LOCKOBWAIT Number of Blocked OmsLockObj Operations0
LOCKOBAVWT Average Wait Time (OmsLockObj)0
PARTITIONIDPartition ID SDB_PARTITIONDEC20DEC20
TENANTTenant SDB_TENANTCHAR32SDB_TABLE

Key field Non-key field



How do I retrieve data from SAP structure LVC_MONOMS using ABAP code?

As LVC_MONOMS is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on LVC_MONOMS as there is no data to select.

How to access SAP table LVC_MONOMS

Within an ECC or HANA version of SAP you can also view further information about LVC_MONOMS and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!