RTST_CMP_TASKLST

Transparent Table Application Table

Task Lists

RTST_CMP_TASKLST is an SAP database table in S/4HANA. Task Lists. It contains 13 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_RetailStoreTaskList view from BASIC Retail Store Task List

Fields (13)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY task_id guid GUID
store_id werks_d Plant
priority rtst_cmp_tasklist_priority Tasklist-Priority
task_status rtst_cmp_task_status Task List Status
category_id rtst_cmp_tasklist_categoryid Category-ID
type rtst_cmp_tasklist_type Tasklist-Type
task_name rtst_cmp_tasklist_name Tasklist-Name
task_description rtst_cmp_tasklist_descr Tasklist-Description
creationtimestamp rtst_cmp_tasklist_tmstmp Creation Timestamp
creationuser rtst_cmp_tasklist_creationuser Creation User
modificationtimestamp rtst_cmp_tasklist_mod_tmstmp Modification Time
modificationuser rtst_cmp_tasklist_mod_user Modificaiton User

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.

-- Task Lists
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE RTST_CMP_TASKLST (
    MANDT,                  -- Client [mandt]
    TASK_ID,                -- GUID [guid]
    STORE_ID,               -- Plant [werks_d]
    PRIORITY,               -- Tasklist-Priority [rtst_cmp_tasklist_priority]
    TASK_STATUS,            -- Task List Status [rtst_cmp_task_status]
    CATEGORY_ID,            -- Category-ID [rtst_cmp_tasklist_categoryid]
    TYPE,                   -- Tasklist-Type [rtst_cmp_tasklist_type]
    TASK_NAME,              -- Tasklist-Name [rtst_cmp_tasklist_name]
    TASK_DESCRIPTION,       -- Tasklist-Description [rtst_cmp_tasklist_descr]
    CREATIONTIMESTAMP,      -- Creation Timestamp [rtst_cmp_tasklist_tmstmp]
    CREATIONUSER,           -- Creation User [rtst_cmp_tasklist_creationuser]
    MODIFICATIONTIMESTAMP,  -- Modification Time [rtst_cmp_tasklist_mod_tmstmp]
    MODIFICATIONUSER,       -- Modificaiton User [rtst_cmp_tasklist_mod_user]
    PRIMARY KEY (MANDT, TASK_ID)
);