/SSB/DD_CONFIG_S

Transparent Table System Table (SAP only)

Client Independent Config for the Generic Drill-Down

/SSB/DD_CONFIG_S is an SAP database table in S/4HANA. Client Independent Config for the Generic Drill-Down. It contains 6 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
/ssb/Core_DD_Config view from SSB: Core DD Config
/SSB/COUNT_DD_CONFIG view from Union of Drilldown reports used in count

Fields (6)

KeyField Data ElementDescription DomainTypeLength
KEY namespace /SSB/NAMESPACE_DISCRIMINATOR Namespace
KEY evaluation_id /SSB/ID Identifier
KEY is_active /SSB/IS_ACTIVE Is Active
show_agg_value /SSB/DDA_CONFIG_VISIBILITY Visibility
cds_annotation_name /SSB/ANNOTATION_MODEL Annotation Model
cds_annotation_version /SSB/ANNOTATION_VERSION Annotation Version

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.

-- Client Independent Config for the Generic Drill-Down
-- Category TRANSPARENT · Delivery class S
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE /SSB/DD_CONFIG_S (
    NAMESPACE,               -- Namespace [/SSB/NAMESPACE_DISCRIMINATOR]
    EVALUATION_ID,           -- Identifier [/SSB/ID]
    IS_ACTIVE,               -- Is Active [/SSB/IS_ACTIVE]
    SHOW_AGG_VALUE,          -- Visibility [/SSB/DDA_CONFIG_VISIBILITY]
    CDS_ANNOTATION_NAME,     -- Annotation Model [/SSB/ANNOTATION_MODEL]
    CDS_ANNOTATION_VERSION,  -- Annotation Version [/SSB/ANNOTATION_VERSION]
    PRIMARY KEY (NAMESPACE, EVALUATION_ID, IS_ACTIVE)
);