CSLA

Transparent Table Application Table

Leistungsartenstamm

CSLA is an SAP database table in S/4HANA. Leistungsartenstamm. It contains 8 fields. 6 CDS views read from this table.

CDS Views using this table (6)

ViewTypeJoinVDMDescription
ESH_N_ACTIVITY_TYPE_CSLA view from Activity master
I_CostCenterActivityType view from BASIC Cost Center Activity Type
I_CostCenterActivityTypeDetail view from BASIC Cost Center Activity Type Detail
P_CostCenterActivityType view from BASIC CostCenterActivityType
P_EntProjElmntDlvTypeTextCode view_entity inner BASIC Description for Deliverable Type
VFCO_CSLA_SHPV view from Activity master

Fields (8)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY kokrs kokrs CO Area
KEY lstar lstar Activity Type
KEY datbi datbi Valid To
datab datab Valid From
leinh leinh Activity Unit
latyp latyp ATyp category
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.

-- Leistungsartenstamm
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE CSLA (
    MANDT,   -- Client [mandt]
    KOKRS,   -- CO Area [kokrs]
    LSTAR,   -- Activity Type [lstar]
    DATBI,   -- Valid To [datbi]
    DATAB,   -- Valid From [datab]
    LEINH,   -- Activity Unit [leinh]
    LATYP,   -- ATyp category [latyp]
    LATYPI,  -- ATyp Cat. Act. [latypi]
    PRIMARY KEY (MANDT, KOKRS, LSTAR, DATBI)
);