I_InsurClmPerformerClmHdr

DDL: I_INSURCLMPERFORMERCLMHDR SQL: IICLPERFRMRCLM Type: view COMPOSITE

Rollenbasierter Bearbeiter auf Fallkopfebene

I_InsurClmPerformerClmHdr is a Composite CDS View that provides data about "Rollenbasierter Bearbeiter auf Fallkopfebene" in SAP S/4HANA. It reads from 1 data source (I_InsurClmRoleClmTypeLinkHdr) and exposes 10 fields with key fields InsurClmResponsibleRole, InsuranceClaim, InsurClmType. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_InsurClmRoleClmTypeLinkHdr I_InsurClmRoleClmTypeLinkHdr from

Associations (3)

CardinalityTargetAliasCondition
[1..*] I_InsurClmPerformerChange _Performer $projection.InsuranceClaim = _Performer.InsuranceClaim and $projection.InsurClmSubclm = _Performer.InsurClmSubclm and $projection.InsurClmResponsibleRole = _Performer.InsurClmResponsibleRole
[0..*] I_InsurClmPerformerRoleName _RoleDesc $projection.InsurClmResponsibleRole = _RoleDesc.InsurClmResponsibleRole
[1..1] I_InsurClmObjTypePerfrmr _ObjTypeTxt $projection.insurclmobjtypeofperformer = _ObjTypeTxt.InsurClmObjTypeOfPerformer

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IICLPERFRMRCLM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Rollenbasierter Bearbeiter auf Fallkopfebene view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY InsurClmResponsibleRole InsurClmResponsibleRole
KEY InsuranceClaim InsuranceClaim Claim Number
KEY InsurClmType InsurClmType Claim Type
InsurClmObjTypeOfPerformer _Performer InsurClmObjTypeOfPerformer
InsurClmSubclm InsurClmSubclm Subclaim
InsurClmPerformerObjID _Performer InsurClmPerformerObjID
InsurClmResponsibleRoleName _RoleDesc InsurClmResponsibleRoleName
_Performer _Performer
_ObjTypeTxt _ObjTypeTxt
_RoleDesc _RoleDesc

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_InsurClmPerformerClmHdr.
-- 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.
-- SQL view name: IICLPERFRMRCLM

CREATE VIEW I_InsurClmPerformerClmHdr AS
SELECT
  InsurClmResponsibleRole,
  InsuranceClaim,
  InsurClmType,
  _Performer.InsurClmObjTypeOfPerformer AS InsurClmObjTypeOfPerformer,
  InsurClmSubclm,
  _Performer.InsurClmPerformerObjID AS InsurClmPerformerObjID,
  _RoleDesc.InsurClmResponsibleRoleName AS InsurClmResponsibleRoleName
FROM I_InsurClmRoleClmTypeLinkHdr
LEFT OUTER JOIN I_InsurClmPerformerChange AS _Performer ON InsuranceClaim = _Performer.InsuranceClaim AND InsurClmSubclm = _Performer.InsurClmSubclm AND InsurClmResponsibleRole = _Performer.InsurClmResponsibleRole  -- association [1..*]
LEFT OUTER JOIN I_InsurClmPerformerRoleName AS _RoleDesc ON InsurClmResponsibleRole = _RoleDesc.InsurClmResponsibleRole  -- association [0..*]
LEFT OUTER JOIN I_InsurClmObjTypePerfrmr AS _ObjTypeTxt ON insurclmobjtypeofperformer = _ObjTypeTxt.InsurClmObjTypeOfPerformer  -- association [1..1]
;