CSLT

Transparent Table Application Table

Activity type texts

CSLT is an SAP database table in S/4HANA. Activity type texts. It contains 8 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_CostCenterActivityTypeText view from BASIC Cost Center Activity Type - Text
I_EntProjElmntDlvbrlTypeText view_entity from BASIC Deliverable Type for Ent Proj Elmnts - Txt

Fields (8)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY spras SPRAS Language
KEY kokrs KOKRS CO Area
KEY lstar LSTAR Activity Type
KEY datbi DATBI Valid To
ktext KTEXT Name
ltext KLTXT Description
mctxt MCDS4 Short Text

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.

-- Activity type texts
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE CSLT (
    MANDT,  -- Client [MANDT]
    SPRAS,  -- Language [SPRAS]
    KOKRS,  -- CO Area [KOKRS]
    LSTAR,  -- Activity Type [LSTAR]
    DATBI,  -- Valid To [DATBI]
    KTEXT,  -- Name [KTEXT]
    LTEXT,  -- Description [KLTXT]
    MCTXT,  -- Short Text [MCDS4]
    PRIMARY KEY (MANDT, SPRAS, KOKRS, LSTAR, DATBI)
);