SAP ESH_TST_EH_SET Test Realtime Indexing: Error Reproduction Settings Table data and field list

ESH_TST_EH_SET is a standard SAP Table which is used to store Test Realtime Indexing: Error Reproduction Settings data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The ESH_TST_EH_SET table consists of various fields, each holding specific information or linking keys about Test Realtime Indexing: Error Reproduction Settings data available in SAP. These include EH_SETTING_KEY (Character field, length 32), SETTING_INI (Character Field Length 1), SETTING_GD (Character Field Length 1), FEEDBACK_MODE (Character Field Length 1)... 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. .

ESH_TST_EH_SET 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 ESH_TST_EH_SET 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 ESH_TST_EH_SET 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
EH_SETTING_KEYCharacter field, length 32 CHAR32CHAR32CHAR32
SETTING_INICharacter Field Length 1 CHAR01CHAR1CHAR1
SETTING_GDCharacter Field Length 1 CHAR01CHAR1CHAR1
FEEDBACK_MODECharacter Field Length 1 CHAR01CHAR1CHAR1
PROCESSING_MODEReal-Time Indexing Processing Mode ESH_E_IF_RTI_PROCESSING_MODECHAR1ESH_D_IF_RTI_PROCESSING_MODE
SETTING_REGCharacter Field Length 1 CHAR01CHAR1CHAR1
SETTING_DEREGCharacter Field Length 1 CHAR01CHAR1CHAR1
LAST_UPD_USERUser name USERNAMECHAR12USERNAME
LAST_UPD_TSTMPUTC Time Stamp in Short Form (YYYYMMDDhhmmss) TIMESTAMPDEC15TZNTSTMPS

Key field Non-key field



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

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

SELECT SINGLE *
FROM ESH_TST_EH_SET
INTO CORRESPONDING FIELDS OF WA_ESH_TST_EH_SET
WHERE...

How to access SAP table ESH_TST_EH_SET

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

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