ECLOG_EXEC SAP (Executed Configuration, Variant, Script, Version) Table details

Dictionary Type: Table
Description: Executed Configuration, Variant, Script, Version




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




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

ECLOG_EXEC is a standard SAP Table which is used to store Executed Configuration, Variant, Script, Version data and is available within R/3 SAP systems depending on the version and release level.

The ECLOG_EXEC table consists of various fields, each holding specific information or linking keys about Executed Configuration, Variant, Script, Version data available in SAP. These include LOGID (Current operation number), OBJ_LNR (Current Number of Object), CONFIG (Test Configuration), VAR_ID (Variant name).. 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: Can be enhanced (character-type)


SAP ECLOG_EXEC 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
LOGIDCurrent operation number ETLOG_IDNUMC10NUM10
OBJ_LNRCurrent Number of Object ETOBJ_LNRNUMC8NUM8
CONFIGTest Configuration ETTC_NAMECHAR30ETOBJ_NAME
VAR_IDVariant name ETVAR_IDCHAR30CHAR30
SCRIPTTest Script in Test Configuration ETSC_NAME_TOPCHAR30ETOBJ_NAME
VERSIONeCATT Object Version of Test Configuration Test Script ETOBJ_VER_TOPNUMC8NUM8
STATUSResult Status Test Script or Variant from Test Configuration ETLOG_EXEC_STATUSNUMC4ETLOG_EXEC_STATUS
STARTDATEStart Date ETLOG_SDATDATS8DATUM
STARTTIMEStart time ETLOG_STIMTIMS6UZEIT
TWB_IDeCATT Execution of TWB Node ID (Config./ Variant) ETEXEC_TWB_IDCHAR32SYCHAR32
SIZE_IN_KBTotal Sizeof Log in Database ETLOG_SIZENUMC12ETLOG_SIZE

Key field Non-key field



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

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

SELECT SINGLE *
FROM ECLOG_EXEC
INTO CORRESPONDING FIELDS OF WA_ECLOG_EXEC
WHERE...

How to access SAP table ECLOG_EXEC

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