CSKS_MAP

Transparent Table Application Table

Cost Center: Mapping to Global Unique ID

CSKS_MAP is an SAP database table in S/4HANA. Cost Center: Mapping to Global Unique ID. It contains 8 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_CostCenterReplicationMapping view_entity from BASIC Reads csks_map

Fields (8)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY globalid fco_cctr_globalid Cost Center
dispname fco_cctr_dispname Cost Center
cocode bukrs Company Code
cctrid kostl Cost Center
deleted flag Indicator
version_id sysuuid_c36 UUID
replication_status fins_mdi_repl_status MDI Cost Center Replication Status

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.

-- Cost Center: Mapping to Global Unique ID
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE CSKS_MAP (
    CLIENT,              -- Client [mandt]
    GLOBALID,            -- Cost Center [fco_cctr_globalid]
    DISPNAME,            -- Cost Center [fco_cctr_dispname]
    COCODE,              -- Company Code [bukrs]
    CCTRID,              -- Cost Center [kostl]
    DELETED,             -- Indicator [flag]
    VERSION_ID,          -- UUID [sysuuid_c36]
    REPLICATION_STATUS,  -- MDI Cost Center Replication Status [fins_mdi_repl_status]
    PRIMARY KEY (CLIENT, GLOBALID)
);