ODQTASKDATA

Transparent Table Temporary Data

ODQ: Task Queue Data

ODQTASKDATA is an SAP database table in S/4HANA. ODQ: Task Queue Data. It contains 9 fields. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
ODQTASKQUEUERUN_CDS view from ODQ Task Queue: Min. und max. TSN
odqtaskqueues_cds view left_outer ODQ Task Queue: Übersicht
odqtaskqueuesched_cds view from ODQ Task Queue: Min. und max. TSN

Fields (9)

KeyField Data ElementDescription DomainTypeLength
KEY taskid odq_taskid Task ID
KEY schedule_tsn odq_tsn TSN
parent_type odq_tq_parent_type ODQ TQ
parent_id odq_externalid External ID
data abap.rawstring
uname syuname User Name
worker_guid odq_taskid Task ID
start_time timestamp Time Stamp
epp_memento abap.rawstring

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.

-- ODQ: Task Queue Data
-- Category TRANSPARENT · Delivery class L
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE ODQTASKDATA (
    TASKID,        -- Task ID [odq_taskid]
    SCHEDULE_TSN,  -- TSN [odq_tsn]
    PARENT_TYPE,   -- ODQ TQ [odq_tq_parent_type]
    PARENT_ID,     -- External ID [odq_externalid]
    DATA,          -- abap.rawstring
    UNAME,         -- User Name [syuname]
    WORKER_GUID,   -- Task ID [odq_taskid]
    START_TIME,    -- Time Stamp [timestamp]
    EPP_MEMENTO,   -- abap.rawstring
    PRIMARY KEY (TASKID, SCHEDULE_TSN)
);