FCC_INSTANCE

Transparent Table Application Table

Instances of a Profile

FCC_INSTANCE is an SAP database table in S/4HANA. Instances of a Profile. It contains 7 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
P_FCC_CLOSINGTASKEXECUTION3 view left_outer BASIC

Fields (7)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY profile FCC_PROFILE Task List
KEY instance FCC_NUM Counter
ddate FCC_DATE Date
is_current XFELD Checkbox
gjahr GJAHR Fiscal Year
poper POPER Posting Period

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.

-- Instances of a Profile
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE FCC_INSTANCE (
    MANDT,       -- Client [MANDT]
    PROFILE,     -- Task List [FCC_PROFILE]
    INSTANCE,    -- Counter [FCC_NUM]
    DDATE,       -- Date [FCC_DATE]
    IS_CURRENT,  -- Checkbox [XFELD]
    GJAHR,       -- Fiscal Year [GJAHR]
    POPER,       -- Posting Period [POPER]
    PRIMARY KEY (MANDT, PROFILE, INSTANCE)
);