DCDEPTB4LOG

Transparent Table Temporary Data

DD: Abhängigkeiten für einen Aktivierungslauf (key log)

DCDEPTB4LOG is an SAP database table in S/4HANA. DD: Abhängigkeiten für einen Aktivierungslauf (key log). It contains 9 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
APS_V_AGV_DEP_TAB view from View on DCDEPTB4LOG

Fields (9)

KeyField Data ElementDescription DomainTypeLength
KEY uuid abap.raw Eindeutige Id für einenEintrag aus DCGENTB4LOG
KEY sequence int4 INT4
type objecttyp Object type
name objectname Object name
deptype objecttyp Object type
depname objectname Object name
as4local as4local Activation State
depkind ddrelkind DD: type of a relationship
action depaction Actions to be executed for a dependent DD object

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.

-- DD: Abhängigkeiten für einen Aktivierungslauf (key log)
-- Category TRANSPARENT · Delivery class L
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE DCDEPTB4LOG (
    UUID,      -- Eindeutige Id für einenEintrag aus DCGENTB4LOG [abap.raw]
    SEQUENCE,  -- INT4 [int4]
    TYPE,      -- Object type [objecttyp]
    NAME,      -- Object name [objectname]
    DEPTYPE,   -- Object type [objecttyp]
    DEPNAME,   -- Object name [objectname]
    AS4LOCAL,  -- Activation State [as4local]
    DEPKIND,   -- DD: type of a relationship [ddrelkind]
    ACTION,    -- Actions to be executed for a dependent DD object [depaction]
    PRIMARY KEY (UUID, SEQUENCE)
);