ICSACTIVITY

Transparent Table Application Table

Aktivität im Schaden-/Leistungsfall

ICSACTIVITY is an SAP database table in S/4HANA. Aktivität im Schaden-/Leistungsfall. It contains 6 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_InsuranceClaimShadowTask view from BASIC Schattentabelle: Aufgabe bei Fallschäden

Fields (6)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY active icl_active Active/Suspense
KEY claim icl_claim Claim Number
KEY subclaim icl_subcl Subclaim
KEY actnumber icl_activityno No.
KEY changetime icl_changeutc1 Changed On

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.

-- Aktivität im Schaden-/Leistungsfall
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE ICSACTIVITY (
    CLIENT,      -- Client [mandt]
    ACTIVE,      -- Active/Suspense [icl_active]
    CLAIM,       -- Claim Number [icl_claim]
    SUBCLAIM,    -- Subclaim [icl_subcl]
    ACTNUMBER,   -- No. [icl_activityno]
    CHANGETIME,  -- Changed On [icl_changeutc1]
    PRIMARY KEY (CLIENT, ACTIVE, CLAIM, SUBCLAIM, ACTNUMBER, CHANGETIME)
);