DEMO_PARENT_CHLD

GLOBAL_TEMPORARY Temporary Data

Temporary Table with Hierarchical Data

DEMO_PARENT_CHLD is an SAP database table in S/4HANA. Temporary Table with Hierarchical Data. It contains 4 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
DEMO_CDS_PARENT_CHILD_SOURCE view from CDS DDIC-based view, parent-child self-association

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY cnt abap.int4
id abap.char
parent_id abap.char

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.

-- Temporary Table with Hierarchical Data
-- Category GLOBAL_TEMPORARY · Delivery class L
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE DEMO_PARENT_CHLD (
    CLIENT,     -- Client [mandt]
    CNT,        -- abap.int4
    ID,         -- abap.char
    PARENT_ID,  -- abap.char
    PRIMARY KEY (CLIENT, CNT)
);