SAP CME_ST_VALUE CME Data Type: Values Table data and field list

CME_ST_VALUE is a standard SAP Table which is used to store CME Data Type: Values data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The CME_ST_VALUE table consists of various fields, each holding specific information or linking keys about CME Data Type: Values data available in SAP. These include CLIENT (Client), FRG_GUID (Set GUID), LINE_ID (Row Key), LEVEL_ID (Level ID)... 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. .

CME_ST_VALUE table Technical Details:

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP CME_ST_VALUE table fields - Full list of fields found in SAP data dictionary

Looking for S/4HANA specific information? Click here to explore the details, fields and extensibility available for this table in the SAP S/4HANA version of the CME_ST_VALUE table. Also check whether the table still exists or has been transformed into a CDS view as part of the HANA simplifications.
Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
CLIENTClient MANDTCLNT3Assigned to domainMANDT
FRG_GUIDSet GUID COMT_FRG_GUIDRAW16SYSUUID
LINE_IDRow Key DML_LINE_IDNUMC5DML_LINE_ID
LEVEL_IDLevel ID CME_VAL_LEVELNUMC5CME_VAL_LEVEL
INSTANCEInstance for Complex Data Types CME_VAL_INSTANCENUMC5CME_VAL_INSTANCE
SPLITTERCounter for Long Values and Value Data Set CME_VAL_SPLITTERNUMC5CME_VAL_SPLITTER
PREDECPrevious Value in Hierarchy CME_VAL_PREDECESSORNUMC5CME_VAL_PREDECESSOR
VALID_FROMValid From (Time Stamp) COMT_VALID_FROMDEC15TSTPSBCOS_TSTMP
VALID_TOValid To (Time Stamp) COMT_VALID_TODEC15TSTPSBCOS_TSTMP
UPNAMEName of the User Who Last Changed the Set COMT_UPNAMECHAR12UNAME
HISTEXHistory Exists COMT_HISTEXCHAR1COM_BOOLEAN
LOGSYSOriginal System COMT_LOGSYSCHAR10Assigned to domainALPHALOGSYSCOM_LOGSYSCOM_PRODUCT_LOGSYS
STRINGCharacter-Type Values CME_VAL_STRINGSSTR254CME_VAL_STRING
INT_FROMInteger Values, Lower Limit CME_VAL_INT_FROMDEC31CME_VAL_INT_FROM
INT_TOInteger Values, Upper Limit CME_VAL_INT_TODEC31CME_VAL_INT_TO
FLT_FROMExponential Number, Lower Limit CME_VAL_FLOAT_FROMFLTP16(16) CME_VAL_FLOAT_FROM
FLT_TOExponential Number, Upper Limit CME_VAL_FLOAT_TOFLTP16(16) CME_VAL_FLOAT_TO
TMS_FROMTime Stamp, Lower Limit CME_VAL_TIMES_FROMDEC15CME_VAL_TIMES_FROM
TMS_TOTime Stamp, Upper Limit CME_VAL_TIMES_TODEC15CME_VAL_TIMES_TO
PREPAREDValue CME_VAL_PREPAREDSSTR254CME_VAL_PREPARED
ACC_FROMInput Accuracy of Lower Limit CME_VAL_ACCURACY_FRONUMC3CME_VAL_ACCURACY_FRO
ACC_TOInput Accuracy of Upper Limit CME_VAL_ACCURACY_TONUMC3CME_VAL_ACCURACY_TO
UOM_FROMAlternative Unit of Measure of Upper Limit CME_VAL_UOM_FROMCHAR3CME_VAL_UOM_FROM
UOM_TOAlternative Unit of Measure of Upper Limit CME_VAL_UOM_TOCHAR3CME_VAL_UOM_TO
INTERVKey Interval Limits CME_VAL_INTERVALCHAR1CME_VAL_INTERVAL
ORG_INPUTOriginal Input CME_VAL_ORG_INPUTSSTR254CME_VAL_ORG_INPUT
LANG_DATAKey Texts CME_VAL_LANG_DATARAW16CME_VAL_LANG_DATA
ORDER_CNTSequence Counter CME_VAL_ORDERNUMC5CME_VAL_ORDER
PREINSTPrevious Instance CME_VAL_PREINSTANCENUMC5CME_VAL_PREINSTANCE
DEF_VALUEDefault Value CME_VAL_DEFAULTCHAR1CME_VAL_DEFAULT
NODENodes in Value Hierarchy CME_VAL_NODECHAR1CME_VAL_NODE
DOCUMENTSDocument Key DML_DOCKEYRAW16DML_DOCKEY
ECM_COUNTChange Management Counter DML_ECM_COUNTNUMC5DML_ECM_COUNT
ECM_DELDeletion Indicator DML_ECM_DELCHAR1DML_ECM_DEL

Key field Non-key field



How do I retrieve data from SAP table CME_ST_VALUE using ABAP code

The following ABAP code Example will allow you to do a basic selection on CME_ST_VALUE to SELECT all data from the table
DATA: WA_CME_ST_VALUE TYPE CME_ST_VALUE.

SELECT SINGLE *
FROM CME_ST_VALUE
INTO CORRESPONDING FIELDS OF WA_CME_ST_VALUE
WHERE...

How to access SAP table CME_ST_VALUE

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

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