SAP CC1ERH Incorrect Time Events from CC1, Header Information Table data and field list

CC1ERH is a standard SAP Table which is used to store Incorrect Time Events from CC1, Header Information data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The CC1ERH table consists of various fields, each holding specific information or linking keys about Incorrect Time Events from CC1, Header Information data available in SAP. These include TEVOR (Pool of incorrect time events), TEVORTEXT (Description of error pool), UNAME1 (User who wrote record to interface), DATUM1 (Date on which record was written to interface)... 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. .

CC1ERH table Technical Details:

Delivery Class: L - Table for storing temporary data, is delivered empty
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP CC1ERH 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 CC1ERH 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 MANDTCLNT3Assigned to domainMANDT
TEVORPool of incorrect time events TEVORCHAR20CHAR20
TEVORTEXTDescription of error pool TEVORTEXTCHAR40CHAR40
UNAME1User who wrote record to interface PW_UNAME1CHAR12UNAME
DATUM1Date on which record was written to interface PW_DATUM1DATS8DATUM
UZEIT1Time at which record was written to interface PW_UZEIT1TIMS6UZEIT
PGMID1Write Record to Interface Report PW_PGMID1CHAR40PROGNAME
UNAME2Name of user who initially accessed record PW_UNAME2CHAR12UNAME
DATUM2Date on which record was initially accessed PW_DATUM2DATS8DATUM
UZEIT2Time at which record was initially accessed PW_UZEIT2TIMS6UZEIT
PGMID2Report used to access record initially PW_PGMID2CHAR40PROGNAME
STATU2Log status when record was first accessed PW_STATU2CHAR1PW_STATU
UNAME3Last user to access record PW_UNAME3CHAR12UNAME
DATUM3Date on which record was last accessed PW_DATUM3DATS8DATUM
UZEIT3Time at which record was last accessed PW_UZEIT3TIMS6UZEIT
PGMID3Last Used to Access Record Program PW_PGMID3CHAR40PROGNAME
STATU3Log status when record was last accessed PW_STATU3CHAR1PW_STATU
UNAME4User who first retrieved the record successfully PW_UNAME4CHAR12UNAME
DATUM4Date on which record was first retrieved successfully PW_DATUM4DATS8DATUM
UZEIT4Time at which record was first retrieved successfully PW_UZEIT4TIMS6UZEIT
PGMID4Report first used to retrieve record successfully PW_PGMID4CHAR40PROGNAME

Key field Non-key field



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

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

SELECT SINGLE *
FROM CC1ERH
INTO CORRESPONDING FIELDS OF WA_CC1ERH
WHERE...

How to access SAP table CC1ERH

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

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