SAP ESH_TST_MAT ES Test Object Material - Main Data Table data and field list

ESH_TST_MAT is a standard SAP Table which is used to store ES Test Object Material - Main Data data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The ESH_TST_MAT table consists of various fields, each holding specific information or linking keys about ES Test Object Material - Main Data data available in SAP. These include CONTEXT (ES Test Objects - Data Context ID), MATNR (ES Test Object Material - Material Number), MATNR_EXT (ES Test Object Material - Material Number), MTART (Material Type)... 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_MAT 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 (Deep)


SAP ESH_TST_MAT 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_MAT 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
CONTEXTES Test Objects - Data Context ID ESH_E_TST_CONTEXTCHAR32SYSUUID_C
MATNRES Test Object Material - Material Number ESH_E_TST_MATNRCHAR18ALPHAESH_D_TST_MATNR
MATNR_EXTES Test Object Material - Material Number ESH_E_TST_MATNRCHAR18ALPHAESH_D_TST_MATNR
MTARTMaterial Type ESH_E_TST_MTARTCHAR4ESH_D_TST_MTART
MEINSBase Unit of Measure ESH_E_TST_MEINSUNIT3Assigned to domainCUNITMEINS
BEGRUAuthorization Group ESH_E_TST_BEGRUCHAR4ESH_D_TST_BEGRU
CREATED_BYUser Name SYUNAMECHAR12SYCHAR12

Key field Non-key field



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

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

SELECT SINGLE *
FROM ESH_TST_MAT
INTO CORRESPONDING FIELDS OF WA_ESH_TST_MAT
WHERE...

How to access SAP table ESH_TST_MAT

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

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