SAP CORE Process Mgmt.: Display Characteristics of the Eval. Version Table data and field list

CORE is a standard SAP Table which is used to store Process Mgmt.: Display Characteristics of the Eval. Version data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The CORE table consists of various fields, each holding specific information or linking keys about Process Mgmt.: Display Characteristics of the Eval. Version data available in SAP. These include WERK (Plant), RPSTR (Evaluation version for process messages), ATINN (Internal characteristic), DSPKZ (Indicator: Use of the characteristic in the layout)... 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. .

CORE 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: Can be enhanced (character-type)


SAP CORE 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 CORE 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
MANDTClient MANDTCLNT3T000MANDT
WERKPlant WERKS_DCHAR4T001WWERKSWRKH_T001W_C
RPSTREvaluation version for process messages CO_RPSTRCHAR8CORPCO_RPSTRRPS
ATINNInternal characteristic ATINNNUMC10Assigned to domainATINNATINN
DSPKZIndicator: Use of the characteristic in the layout CO_DSPKZNUMC1CO_123
SORTNRSort number CO_SORTNRNUMC2NUM2
SELBDSelection rule for process date evaluation CO_SELBDCHAR49CHAR49
DSPKZ_GIndicator: Use of the characteristic in the layout CO_DSPKZNUMC1CO_123

Key field Non-key field



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

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

SELECT SINGLE *
FROM CORE
INTO CORRESPONDING FIELDS OF WA_CORE
WHERE...

How to access SAP table CORE

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

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