KAKT

Transparent Table Application Table

Capacity Description

KAKT is an SAP database table in S/4HANA. Capacity Description. It contains 4 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_CapacityText view from BASIC Capacity - Text

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY kapid kapid Capacity ID
KEY spras spras Language
ktext kaptext Capacity 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.

-- Capacity Description
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE KAKT (
    MANDT,  -- Client [mandt]
    KAPID,  -- Capacity ID [kapid]
    SPRAS,  -- Language [spras]
    KTEXT,  -- Capacity Text [kaptext]
    PRIMARY KEY (MANDT, KAPID, SPRAS)
);