SAP ESH_TST_HBT_SIM Automated Hub Tests: Simulation: Recording Table data and field list

ESH_TST_HBT_SIM is a standard SAP Table which is used to store Automated Hub Tests: Simulation: Recording data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The ESH_TST_HBT_SIM table consists of various fields, each holding specific information or linking keys about Automated Hub Tests: Simulation: Recording data available in SAP. These include RECORDING_GUID (Recording GUID for Automated Hub Tests), REC_EXEC_ID (Recording Execution ID for Automated Hub Tests), REC_POS_ID (Recording Position ID for Automated Hub Tests), ITERATION_ID (Automated Hub Tests: Iteration ID)... 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_HBT_SIM table Technical Details:

Delivery Class: E - Control table, SAP and customer have separate key areas
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP ESH_TST_HBT_SIM 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_HBT_SIM 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
CLIENTClient MANDTCLNT3Assigned to domainMANDT
RECORDING_GUIDRecording GUID for Automated Hub Tests ESH_E_TST_HBT_RECORDING_GUIDCHAR32SYSUUID_C
REC_EXEC_IDRecording Execution ID for Automated Hub Tests ESH_E_TST_HBT_REC_EXEC_IDCHAR32ESH_D_TST_HBT_REC_EXEC_ID
REC_POS_IDRecording Position ID for Automated Hub Tests ESH_E_TST_HBT_REC_POS_IDCHAR61ESH_D_TST_HBT_REC_POS_ID
ITERATION_IDAutomated Hub Tests: Iteration ID ESH_E_TST_HBT_ITERATION_IDCHAR90ESH_D_TST_HBT_ITERATION_ID
ITERATION_COUNTIteration Count for Automated Hub Tests ESH_E_TST_HBT_ITERATION_COUNTINT410ESH_D_TST_HBT_ITERATION_COUNT
BEFORE_OR_AFTERAutomated Hub Tests: Before or After ESH_E_TST_HBT_BEFORE_OR_AFTERCHAR1ESH_D_TST_HBT_BEFORE_OR_AFTER
TIME_STAMPAutomated Hub Tests: Timestamp of Recording ESH_E_TST_HBT_TIME_STAMPDEC15TZNTSTMPS
STATUSAutomated Hub Tests: Status ESH_E_TST_HBT_STATUSCHAR2ESH_D_TST_HBT_STATUS
RECORDED_DATARecorded Data for Automated Hub Tests ESH_E_TST_HBT_RECORDED_DATARSTR0ESH_D_TST_HBT_RECORDED_DATA
REC_CONTEXTAutomated Hub Tests: Recording Context ESH_E_TST_HBT_REC_CONTEXTRSTR0ESH_D_TST_HBT_REC_CONTEXT

Key field Non-key field



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

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

SELECT SINGLE *
FROM ESH_TST_HBT_SIM
INTO CORRESPONDING FIELDS OF WA_ESH_TST_HBT_SIM
WHERE...

How to access SAP table ESH_TST_HBT_SIM

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

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