ICL_CLAUSETXT

Transparent Table Application Table

Long Texts for Clauses

ICL_CLAUSETXT is an SAP database table in S/4HANA. Long Texts for Clauses. It contains 10 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_InsurClmClauseTxt view from BASIC Langtexte zu Klauseln

Fields (10)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY active ICL_ACTIVE Active/Suspense
KEY claim ICL_CLAIM Claim Number
KEY clause_id ICL_POL_CLAUSE_GUID_D ID
KEY langu LANGU Language
KEY line ICL_POL_LINE_D Line No.
changetime ICL_CHANGEUTC1 Changed On
changedby ICL_CHANGEDBY Changed By
deleted ICL_RECSTATUS Status
text ICL_POL_CLAUSE_TEXT_D Clause 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.

-- Long Texts for Clauses
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE ICL_CLAUSETXT (
    CLIENT,      -- Client [MANDT]
    ACTIVE,      -- Active/Suspense [ICL_ACTIVE]
    CLAIM,       -- Claim Number [ICL_CLAIM]
    CLAUSE_ID,   -- ID [ICL_POL_CLAUSE_GUID_D]
    LANGU,       -- Language [LANGU]
    LINE,        -- Line No. [ICL_POL_LINE_D]
    CHANGETIME,  -- Changed On [ICL_CHANGEUTC1]
    CHANGEDBY,   -- Changed By [ICL_CHANGEDBY]
    DELETED,     -- Status [ICL_RECSTATUS]
    TEXT,        -- Clause Text [ICL_POL_CLAUSE_TEXT_D]
    PRIMARY KEY (CLIENT, ACTIVE, CLAIM, CLAUSE_ID, LANGU, LINE)
);