E_InsuranceClaimParticipant

DDL: E_INSURANCECLAIMPARTICIPANT Type: view_entity EXTENSION

Insurance Claim Participant - Extension

E_InsuranceClaimParticipant is a Extension CDS View that provides data about "Insurance Claim Participant - Extension" in SAP S/4HANA. It reads from 1 data source (iclpartocc) and exposes 5 fields with key fields InsuranceClaim, InsurClmSubobjectCategory, InsurClmSubobject, InsurClmParticipantRole, BusinessPartner.

Data Sources (1)

SourceAliasJoin Type
iclpartocc Persistence from

Annotations (6)

NameValueLevelField
EndUserText.label Insurance Claim Participant - 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 (5)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim iclpartocc claim Policy Snapshot
KEY InsurClmSubobjectCategory iclpartocc subobjcat Subobject Cat.
KEY InsurClmSubobject iclpartocc subobject Triggering obj.
KEY InsurClmParticipantRole iclpartocc role VMS Roles
KEY BusinessPartner iclpartocc bpartner Participant

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_InsuranceClaimParticipant.
-- 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_InsuranceClaimParticipant AS
SELECT
  Persistence.claim AS InsuranceClaim,
  Persistence.subobjcat AS InsurClmSubobjectCategory,
  Persistence.subobject AS InsurClmSubobject,
  Persistence.role AS InsurClmParticipantRole,
  Persistence.bpartner AS BusinessPartner
FROM iclpartocc AS Persistence
;