SCBC_SSC_REG_REL

Transparent Table System Table (SAP only)

SSCUI Relation Registry Table

SCBC_SSC_REG_REL is an SAP database table in S/4HANA. SSCUI Relation Registry Table. It contains 7 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
/CFG/V_SSC_R_REL view_entity from View SSCUI Relations

Fields (7)

KeyField Data ElementDescription DomainTypeLength
KEY activity CUS_IMG_AC IMG Activity
KEY relation_to_activity CUS_IMG_AC IMG Activity
KEY relation_type CBC_SSC_RELATION_TYPE Relation Type
created_on CBC_SSC_CREATED_ON Created on
created_by CBC_SSC_CREATED_BY Created by
changed_on CBC_SSC_CHANGED_ON Changed on
changed_by CBC_SSC_CHANGED_BY Changed by

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.

-- SSCUI Relation Registry Table
-- Category TRANSPARENT · Delivery class S
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SCBC_SSC_REG_REL (
    ACTIVITY,              -- IMG Activity [CUS_IMG_AC]
    RELATION_TO_ACTIVITY,  -- IMG Activity [CUS_IMG_AC]
    RELATION_TYPE,         -- Relation Type [CBC_SSC_RELATION_TYPE]
    CREATED_ON,            -- Created on [CBC_SSC_CREATED_ON]
    CREATED_BY,            -- Created by [CBC_SSC_CREATED_BY]
    CHANGED_ON,            -- Changed on [CBC_SSC_CHANGED_ON]
    CHANGED_BY,            -- Changed by [CBC_SSC_CHANGED_BY]
    PRIMARY KEY (ACTIVITY, RELATION_TO_ACTIVITY, RELATION_TYPE)
);