ICL_CLAUSETXT

Transparent Table Application Table

Langtexte zu Klauseln

ICL_CLAUSETXT is an SAP database table in S/4HANA. Langtexte zu Klauseln. It contains 6 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_InsurClmClauseTxt view from BASIC Langtexte zu Klauseln

Fields (6)

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.

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.

-- Langtexte zu Klauseln
-- 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]
    PRIMARY KEY (CLIENT, ACTIVE, CLAIM, CLAUSE_ID, LANGU, LINE)
);