I_InsurClmSrvcsSubclmPerfrmr

DDL: I_INSURCLMSRVCSSUBCLMPERFRMR Type: view_entity COMPOSITE

Claim Services Subclaim

I_InsurClmSrvcsSubclmPerfrmr is a Composite CDS View that provides data about "Claim Services Subclaim" in SAP S/4HANA. It reads from 1 data source (I_InsurClmPerformer) and exposes 11 fields with key fields InsuranceClaim, InsurClmPerformerUniqueID, InsurClmSubclm. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_InsurClmPerformer I_InsurClmPerformer from

Associations (2)

CardinalityTargetAliasCondition
[1..*] I_InsurClmSubclmAssgmtLinkage _ClmAssgmt I_InsurClmPerformer.InsurClmPerformerUniqueID = _ClmAssgmt.InsurClmSourceEntryUUID
[1..1] I_InsurClmSrvcsSubclaim _Subclaim $projection.InsuranceClaim = _Subclaim.InsuranceClaim and $projection.insurclmsubclm = _Subclaim.InsurClmSubclm

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Claim Services Subclaim view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.representativeKey InsurClmPerformerUniqueID view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim InsuranceClaim Claim Number
KEY InsurClmPerformerUniqueID InsurClmPerformerUniqueID UUID
KEY InsurClmSubclm _Subclaim InsurClmSubclm Subclaim
InsurClmSubobject InsurClmSubobject Claim Subobject
InsurClmResponsibleRole InsurClmResponsibleRole Performer Role
InsurClmPerformerObjID InsurClmPerformerObjID Performer
InsurClmObjTypeOfPerformer InsurClmObjTypeOfPerformer Object Type
InsurClmChangeTime InsurClmChangeTime Time Stamp
InsurClmChangedBy InsurClmChangedBy Changed By
_Subclaim _Subclaim
_ClmAssgmt _ClmAssgmt

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 I_InsurClmSrvcsSubclmPerfrmr.
-- 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 I_InsurClmSrvcsSubclmPerfrmr AS
SELECT
  InsuranceClaim,
  InsurClmPerformerUniqueID,
  _Subclaim.InsurClmSubclm AS InsurClmSubclm,
  InsurClmSubobject,
  InsurClmResponsibleRole,
  InsurClmPerformerObjID,
  InsurClmObjTypeOfPerformer,
  InsurClmChangeTime,
  InsurClmChangedBy
FROM I_InsurClmPerformer
LEFT OUTER JOIN I_InsurClmSubclmAssgmtLinkage AS _ClmAssgmt ON I_InsurClmPerformer.InsurClmPerformerUniqueID = _ClmAssgmt.InsurClmSourceEntryUUID  -- association [1..*]
LEFT OUTER JOIN I_InsurClmSrvcsSubclaim AS _Subclaim ON InsuranceClaim = _Subclaim.InsuranceClaim AND insurclmsubclm = _Subclaim.InsurClmSubclm  -- association [1..1]
;