ATP_R4D_WORKLIST

Transparent Table Application Table

Worklist in Release for Delivery

ATP_R4D_WORKLIST is an SAP database table in S/4HANA. Worklist in Release for Delivery. It contains 9 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_RFDYWorklist view from BASIC Release for Delivery Worklist

Fields (9)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY rfdyworklistuuid atp_r4d_worklist_id Worklist ID
responsibilityuuid atp_responsibility_uuid Responsibility UUID
horizonforselectionindays atp_selection_horizon Horizon
createdbyuser uname User Name
creationdatetime atp_r4d_creation_timestamp Creation Timestamp
lastchangedatetime atp_r4d_lastchange_timestamp Last Change Timestmp
processingstatus atp_r4d_worklist_status Worklist Status
processor atp_r4d_worklist_processor Processor

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.

-- Worklist in Release for Delivery
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE ATP_R4D_WORKLIST (
    MANDT,                      -- Client [mandt]
    RFDYWORKLISTUUID,           -- Worklist ID [atp_r4d_worklist_id]
    RESPONSIBILITYUUID,         -- Responsibility UUID [atp_responsibility_uuid]
    HORIZONFORSELECTIONINDAYS,  -- Horizon [atp_selection_horizon]
    CREATEDBYUSER,              -- User Name [uname]
    CREATIONDATETIME,           -- Creation Timestamp [atp_r4d_creation_timestamp]
    LASTCHANGEDATETIME,         -- Last Change Timestmp [atp_r4d_lastchange_timestamp]
    PROCESSINGSTATUS,           -- Worklist Status [atp_r4d_worklist_status]
    PROCESSOR,                  -- Processor [atp_r4d_worklist_processor]
    PRIMARY KEY (MANDT, RFDYWORKLISTUUID)
);