I_InsurClmClaimant

DDL: I_INSURCLMCLAIMANT SQL: IICLCLAIMANT Type: view COMPOSITE

Daten zu Anspruchsteller

I_InsurClmClaimant is a Composite CDS View that provides data about "Daten zu Anspruchsteller" in SAP S/4HANA. It reads from 1 data source (I_InsurClmPrtcpntOccrnc) and exposes 4 fields. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_InsurClmPrtcpntOccrnc _Claimant from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_BusinessPartner _BusinessPartner _BusinessPartner.BusinessPartner = $projection.BusinessPartner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IICLCLAIMANT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Daten zu Anspruchsteller view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #D view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
InsuranceClaim InsuranceClaim Claim Number
InsurClmSubobject InsurClmSubobject Claim Subobject
BusinessPartner BusinessPartner Issuing Authority
InsurClmClaimantName _BusinessPartner BusinessPartnerName Extracted Customer Name

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_InsurClmClaimant.
-- 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: IICLCLAIMANT

CREATE VIEW I_InsurClmClaimant AS
SELECT
  InsuranceClaim,
  InsurClmSubobject,
  BusinessPartner,
  _BusinessPartner.BusinessPartnerName AS InsurClmClaimantName
FROM I_InsurClmPrtcpntOccrnc AS _Claimant
LEFT OUTER JOIN I_BusinessPartner AS _BusinessPartner ON _BusinessPartner.BusinessPartner = BusinessPartner  -- association [1..1]
;