E_InsuranceClaimTask

DDL: E_INSURANCECLAIMTASK Type: view_entity EXTENSION

Insurance Claim Task - Extension

E_InsuranceClaimTask is a Extension CDS View that provides data about "Insurance Claim Task - Extension" in SAP S/4HANA. It reads from 1 data source (iclactivity) and exposes 3 fields with key fields InsuranceClaim, InsurClmSubclm, InsurClmActivitySequenceNumber.

Data Sources (1)

SourceAliasJoin Type
iclactivity Persistence from

Annotations (6)

NameValueLevelField
EndUserText.label Insurance Claim Task - Extension view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.viewType #EXTENSION view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim iclactivity claim Policy Snapshot
KEY InsurClmSubclm iclactivity subclaim Subclaim
KEY InsurClmActivitySequenceNumber iclactivity actnumber No.

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view E_InsuranceClaimTask.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW E_InsuranceClaimTask AS
SELECT
  Persistence.claim AS InsuranceClaim,
  Persistence.subclaim AS InsurClmSubclm,
  Persistence.actnumber AS InsurClmActivitySequenceNumber
FROM iclactivity AS Persistence
;