START_LOG

Transparent Table Application Table

Test Plan Execution Logs

START_LOG is an SAP database table in S/4HANA. Test Plan Execution Logs. It contains 37 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_TestAutomateLog view_entity from BASIC Logs

Fields (37)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY log_id start_log_id
testplan_id start_testplan_id
process_id start_process_id
process_seqno start_proc_seqno
step_id start_step_id
step_seqno start_step_seqno
logno start_logno
username xubname User
target_system start_tp_target
target_client start_tp_target_clnt
language laiso Language Code
execution_status start_execution_status
start_on start_started_tstmps
end_on start_ended_tstmps
log_xml start_step_xml
testplan_name start_testplan_name
version start_tp_version
created_on start_created_on
created_by start_created_by
variant_id start_variant_id
exec_scheduled start_tp_scheduled_ind
exported_json start_exported_json
queued_on start_queued_on_tstmps
error_cat start_err_category
rel start_release
time_taken start_time_taken
type start_process_relation_type
detail_reason start_failure_reason
_dataaging data_temperature Data Aging
variant_name start_variant_name
failure_cat start_failure_cat
recommendations start_recommendations
or_adaption_flag start_or_adaption_flag
fc_guid start_failure_cat_guid
tdc_var_json start_tdc_json
classified_by start_classified_by

Derived SQL schema, reconstructed from the indexed DDIC field metadata (field names, types, lengths and key flags) — a functional representation, not the verbatim SAP source.

-- Test Plan Execution Logs
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE START_LOG (
    MANDT,             -- Client [mandt]
    LOG_ID,            -- start_log_id
    TESTPLAN_ID,       -- start_testplan_id
    PROCESS_ID,        -- start_process_id
    PROCESS_SEQNO,     -- start_proc_seqno
    STEP_ID,           -- start_step_id
    STEP_SEQNO,        -- start_step_seqno
    LOGNO,             -- start_logno
    USERNAME,          -- User [xubname]
    TARGET_SYSTEM,     -- start_tp_target
    TARGET_CLIENT,     -- start_tp_target_clnt
    LANGUAGE,          -- Language Code [laiso]
    EXECUTION_STATUS,  -- start_execution_status
    START_ON,          -- start_started_tstmps
    END_ON,            -- start_ended_tstmps
    LOG_XML,           -- start_step_xml
    TESTPLAN_NAME,     -- start_testplan_name
    VERSION,           -- start_tp_version
    CREATED_ON,        -- start_created_on
    CREATED_BY,        -- start_created_by
    VARIANT_ID,        -- start_variant_id
    EXEC_SCHEDULED,    -- start_tp_scheduled_ind
    EXPORTED_JSON,     -- start_exported_json
    QUEUED_ON,         -- start_queued_on_tstmps
    ERROR_CAT,         -- start_err_category
    REL,               -- start_release
    TIME_TAKEN,        -- start_time_taken
    TYPE,              -- start_process_relation_type
    DETAIL_REASON,     -- start_failure_reason
    _DATAAGING,        -- Data Aging [data_temperature]
    VARIANT_NAME,      -- start_variant_name
    FAILURE_CAT,       -- start_failure_cat
    RECOMMENDATIONS,   -- start_recommendations
    OR_ADAPTION_FLAG,  -- start_or_adaption_flag
    FC_GUID,           -- start_failure_cat_guid
    TDC_VAR_JSON,      -- start_tdc_json
    CLASSIFIED_BY,     -- start_classified_by
    PRIMARY KEY (MANDT, LOG_ID)
);