CSSL

Transparent Table Application Table

Kostenstelle / Leistungsart

CSSL is an SAP database table in S/4HANA. Kostenstelle / Leistungsart. It contains 12 fields. 5 CDS views read from this table.

CDS Views using this table (5)

ViewTypeJoinVDMDescription
ESH_N_ACTIVITY_TYPE_CSSL view from Cost Center/Activity Type
FCO_COST_RATE_MIG_CLASSIC view inner Activity prices from COST in ACCOSTRATE format
I_CostCenterActivityTypeCtrl view from BASIC Cost Center Activity Type Control Data
V_COSL_A_KSII_VIEW view inner COSL actual data for usage in TA KSII
V_COSL_P_KSII_VIEW view inner COSL plan data for usage in TA KSII

Fields (12)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY kokrs kokrs CO Area
KEY kostl kostl Cost Center
KEY lstar lstar Activity Type
KEY gjahr gjahr Fiscal Year
cckey cckey Cost Collector
latyp latyp ATyp category
leinh leinh Activity Unit
ausfk ausfk Output factor
auseh auseh Output Unit
objnr j_objnr Object number
latypi latypi ATyp Cat. Act.

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.

-- Kostenstelle / Leistungsart
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE CSSL (
    MANDT,   -- Client [mandt]
    KOKRS,   -- CO Area [kokrs]
    KOSTL,   -- Cost Center [kostl]
    LSTAR,   -- Activity Type [lstar]
    GJAHR,   -- Fiscal Year [gjahr]
    CCKEY,   -- Cost Collector [cckey]
    LATYP,   -- ATyp category [latyp]
    LEINH,   -- Activity Unit [leinh]
    AUSFK,   -- Output factor [ausfk]
    AUSEH,   -- Output Unit [auseh]
    OBJNR,   -- Object number [j_objnr]
    LATYPI,  -- ATyp Cat. Act. [latypi]
    PRIMARY KEY (MANDT, KOKRS, KOSTL, LSTAR, GJAHR)
);