APS_CDT_SECTION

Transparent Table Application Table

CDT: Section Header

APS_CDT_SECTION is an SAP database table in S/4HANA. CDT: Section Header. It contains 12 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
APS_CDT_SECTION_C view from CDT: Section Consumption View

Fields (12)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY dataset_id APS_CDT_DATASET_ID Dataset ID
KEY page_id APS_CDT_PAGE_ID Page ID
KEY section_id APS_CDT_SECTION_ID Section ID
type APS_CDT_SECTION_TYPE Section Type
ranking APS_CDT_RANKING Ranking
image_id APS_CDT_IMAGE_ID Image ID
visibility_constraints APS_CDT_JSON JSON Document
created_by SYUNAME User Name
created_on TIMESTAMPL Time Stamp
changed_by SYUNAME User Name
changed_on TIMESTAMPL Time Stamp

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.

-- CDT: Section Header
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE APS_CDT_SECTION (
    MANDT,                   -- Client [MANDT]
    DATASET_ID,              -- Dataset ID [APS_CDT_DATASET_ID]
    PAGE_ID,                 -- Page ID [APS_CDT_PAGE_ID]
    SECTION_ID,              -- Section ID [APS_CDT_SECTION_ID]
    TYPE,                    -- Section Type [APS_CDT_SECTION_TYPE]
    RANKING,                 -- Ranking [APS_CDT_RANKING]
    IMAGE_ID,                -- Image ID [APS_CDT_IMAGE_ID]
    VISIBILITY_CONSTRAINTS,  -- JSON Document [APS_CDT_JSON]
    CREATED_BY,              -- User Name [SYUNAME]
    CREATED_ON,              -- Time Stamp [TIMESTAMPL]
    CHANGED_BY,              -- User Name [SYUNAME]
    CHANGED_ON,              -- Time Stamp [TIMESTAMPL]
    PRIMARY KEY (MANDT, DATASET_ID, PAGE_ID, SECTION_ID)
);