RSTT_ERROR SAP (Error Archive) Table details

Dictionary Type: Table
Description: Error Archive




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




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

RSTT_ERROR is a standard SAP Table which is used to store Error Archive data and is available within R/3 SAP systems depending on the version and release level.

The RSTT_ERROR table consists of various fields, each holding specific information or linking keys about Error Archive data available in SAP. These include ERRORID (Error ID), TAREA (Trace Tool: Test Area ID), TTYPE (Trace Tool: Trace Type), TJOBGUID (RSTT:_Trace GUID).. 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: 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

Text table = RSTT_ERROR_T


SAP RSTT_ERROR table 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
ERRORGUIDRSTT:_Trace GUID RSTT_GUIDRAW16SYSUUID
ERRORIDError ID RSTT_ERRORIDINT410
TAREATrace Tool: Test Area ID RSTT_TAREACHAR20RSTT_TAREA
TTYPETrace Tool: Trace Type RSTT_TTYPECHAR4RSTT_TTYPE
TJOBGUIDRSTT:_Trace GUID RSTT_GUIDRAW16SYSUUID
TJOBIDTrace Tool: ID for Trace Job/Test Job RSTT_TJOBIDCHAR30
TRACEGUIDRSTT:_Trace GUID RSTT_GUIDRAW16SYSUUID
TRACEIDTrace Tool: Technical Name of Trace (Trace ID) RSTT_TRACEIDCHAR30RSTT_TRACEID
PLAYVARIDVariant ID RSTT_VARIANTIDCHAR20
REFVARIDVariant ID RSTT_VARIANTIDCHAR20
POSINOTrace Tool: Integer Value RSTT_INT4INT410RSTT_INT4
ETYPEError Type RSTT_ERRORTYPECHAR2RSTT_ERRORTYPE
ECLASSError Class RSTT_ERRORCLASSCHAR1RSTT_ERRORCLASS
EAREAError Area RSTT_ERRORAREANUMC2RSTT_ERRORAREA
EPRIOPriority RSTT_PRIONUMC1RSTT_PRIO
POBJTYPETrace Tool: Program Object Type RSTT_POBJTYPCHAR1RSTT_POBJTYP
POBJNMTrace Tool: Name of Program Object RSTT_POBJNMCHAR61
PSOBJNMTrace Tool: Name of Program Super Object (e.g. Class Name) RSTT_PSOBJNMCHAR40
PARAMTYPETrace Tool: Type of Data Element RSTT_DOBJKINDCHAR1RSTT_DOBJKIND
PARAMNMTrace Tool: ABAP Component Name RSTT_COMPNMCHAR30RSTT_COMPNM
COMPTYPESubtype of Data Object RSTT_DOBJSKINDCHAR1RSTT_DOBJSKIND
COMPNMTrace Tool: ABAP Component Name RSTT_COMPNMCHAR30RSTT_COMPNM
MSGTYPMessage Type RSTT_MSGTYPCHAR1RSTT_MSGTYP
MSGNOMessage Number RSTT_MSGNONUMC10
MSGINSTMessage Number RSTT_MSGNONUMC10
MSGYMessage Year RSTT_MSGYNUMC4
NOTENOSAP Note Number RSTT_NOTENONUMC10
CORRSTATCorrection Status RSTT_CORRSTATCHAR1RSTT_CORRSTAT
OWNERTrace Tool: Trace User RSTT_TUSERCHAR12
DEFTIMELast Change to Definition RSRMODTIMEDEC15TZNTSTMPS
LASTUSERTrace Tool: Trace User RSTT_TUSERCHAR12
MODTIMELast Change to Definition RSRMODTIMEDEC15TZNTSTMPS
SYSIDName of SAP System SYSYSIDCHAR8SYCHAR08
SYSRELRelease RSTT_RELEASECHAR3
SYSPATCHTrace Tool: Patch Level of System RSTT_SYSPATCHCHAR20
DBSYSTrace Tool: Char 10 Field RSTT_CHAR10CHAR10
OPSYSTrace Tool: Char 10 Field RSTT_CHAR10CHAR10
ERESPTrace Tool: Trace User RSTT_TUSERCHAR12
ERRORCATError Category RSTT_ERRCATCHAR1RSTT_ERRCAT
PARAMSTrace Tool: BLOB Field for Saving XML String RSTT_BLOBRSTR0RSTT_BLOB
BWTCTVALIDTrace Tool: Standard Flag RSTT_FLAGCHAR1RSTT_FLAG
FINISHTIMELast Change to Definition RSRMODTIMEDEC15TZNTSTMPS

Key field Non-key field



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

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

SELECT SINGLE *
FROM RSTT_ERROR
INTO CORRESPONDING FIELDS OF WA_RSTT_ERROR
WHERE...

How to access SAP table RSTT_ERROR

Within an ECC or HANA version of SAP you can also view further information about RSTT_ERROR 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!