TFACT_SET_PART

Transparent Table Customizing Table

Fact Set Parts

TFACT_SET_PART is an SAP database table in S/4HANA. Fact Set Parts. It contains 8 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_PubSecFactTypeSetAssgmt view from BASIC Assignment Fact Types to Fact Set

Fields (8)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY fact_set PS_FACTS_SET Fact Set
KEY fact_type_seq PS_FACT_TYPE_SEQ Fact Type Sequence
fact_type PS_FACT_TYPE Fact Type
mandatory PS_XMAND Mandatory
multiple PS_XMULT Multiple Values
time_dependant PS_XTIME Time-Dependent
auth_group PS_FACT_TYPE_BEGRU Authorization Group

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.

-- Fact Set Parts
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE TFACT_SET_PART (
    CLIENT,          -- Client [MANDT]
    FACT_SET,        -- Fact Set [PS_FACTS_SET]
    FACT_TYPE_SEQ,   -- Fact Type Sequence [PS_FACT_TYPE_SEQ]
    FACT_TYPE,       -- Fact Type [PS_FACT_TYPE]
    MANDATORY,       -- Mandatory [PS_XMAND]
    MULTIPLE,        -- Multiple Values [PS_XMULT]
    TIME_DEPENDANT,  -- Time-Dependent [PS_XTIME]
    AUTH_GROUP,      -- Authorization Group [PS_FACT_TYPE_BEGRU]
    PRIMARY KEY (CLIENT, FACT_SET, FACT_TYPE_SEQ)
);