SWXCOSTCENTER

Transparent Table Application Table

Form: Costcenter

SWXCOSTCENTER is an SAP database table in S/4HANA. Form: Costcenter. It contains 7 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
Swx_Sddl_Costcenter view from Workflow Demo: Costcenter (CDS view)

Fields (7)

KeyField Data ElementDescription DomainTypeLength
KEY client swx_client Client
KEY costcenter swx_cstcnt Cost center
owner swx_cstcnt_owner Owner
waers rscurrency Currency
country swx_country Country
last_changed_ts timestamp Time Stamp
name swx_cstcnt_name Cost Center

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.

-- Form: Costcenter
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SWXCOSTCENTER (
    CLIENT,           -- Client [swx_client]
    COSTCENTER,       -- Cost center [swx_cstcnt]
    OWNER,            -- Owner [swx_cstcnt_owner]
    WAERS,            -- Currency [rscurrency]
    COUNTRY,          -- Country [swx_country]
    LAST_CHANGED_TS,  -- Time Stamp [timestamp]
    NAME,             -- Cost Center [swx_cstcnt_name]
    PRIMARY KEY (CLIENT, COSTCENTER)
);