E_INS_ClaimParticipantOccrnc

DDL: E_INS_CLAIMPARTICIPANTOCCRNC Type: view_entity EXTENSION

Claim Participant Occurrence – Extension

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

Data Sources (1)

SourceAliasJoin Type
iclpartocc Persistence from

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Claim Participant Occurrence – Extension view
AbapCatalog.extensibility.elementSuffix ICL view
AbapCatalog.extensibility.quota.maximumFields 100 view
AbapCatalog.extensibility.quota.maximumBytes 1000 view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
VDM.viewType #EXTENSION 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 InsurClmBusinessPartner 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_INS_ClaimParticipantOccrnc.
-- 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_INS_ClaimParticipantOccrnc AS
SELECT
  Persistence.claim AS InsuranceClaim,
  Persistence.subobjcat AS InsurClmSubobjectCategory,
  Persistence.subobject AS InsurClmSubobject,
  Persistence.role AS InsurClmParticipantRole,
  Persistence.bpartner AS InsurClmBusinessPartner
FROM iclpartocc AS Persistence
;