I_InsurClmInjuredPersonDetails
Verletzte Person für Fallauskunft
I_InsurClmInjuredPersonDetails is a Composite CDS View that provides data about "Verletzte Person für Fallauskunft" in SAP S/4HANA. It reads from 1 data source (I_InsurClmInjuredPerson) and exposes 16 fields with key fields InsuranceClaim, BusinessPartner, InsurClmSubobjectCategory, InsurClmSubobject, InsurClmParticipantRole. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_InsurClmInjuredPerson | I_InsurClmInjuredPerson | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_InsurClmParticipant | _Part | $projection.InsuranceClaim = _Part.InsuranceClaim and $projection.BusinessPartner = _Part.BusinessPartner |
| [0..1] | I_InsurClmDamageAssignment | _Itad | $projection.InsuranceClaim = _Itad.InsuranceClaim and $projection.InsurClmSubobject = _Itad.InsurClmDamagedObject and _Itad.InsurClmSubobjectCategory = 'DD' |
| [0..*] | I_InsurClmPrtcpntOccrnc | _Insu | $projection.InsuranceClaim = _Insu.InsuranceClaim and _Insu.InsurClmSubobjectCategory = 'PA' and _Insu.InsurClmParticipantRole = 'EXTI' and $projection.BusinessPartner = _Insu.InsurClmSubobject |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IICLINJUPERSON | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Verletzte Person für Fallauskunft | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #COMPOSITE | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #D | view |
Fields (16)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InsuranceClaim | I_InsurClmInjuredPerson | InsuranceClaim | Claim Number |
| KEY | BusinessPartner | I_InsurClmInjuredPerson | BusinessPartner | Issuing Authority |
| KEY | InsurClmSubobjectCategory | I_InsurClmInjuredPerson | InsurClmSubobjectCategory | Subobject Cat. |
| KEY | InsurClmSubobject | I_InsurClmInjuredPerson | InsurClmSubobject | Claim Subobject |
| KEY | InsurClmParticipantRole | I_InsurClmInjuredPerson | InsurClmParticipantRole | ParticipantRole |
| KEY | InsurClmDamagedObject | _Itad | InsurClmDmgdSubObject | Subobject |
| KEY | InsurClmInjuryDetails | _Insu | InsurClmSubobject | Claim Subobject |
| BusinessPartnerName | I_InsurClmInjuredPerson | BusinessPartnerName | Extracted Customer Name | |
| BirthDate | I_InsurClmInjuredPerson | BirthDate | Date of Birth | |
| HouseNumber | I_InsurClmInjuredPerson | HouseNumber | House Number | |
| StreetName | I_InsurClmInjuredPerson | StreetName | Text | |
| CityName | I_InsurClmInjuredPerson | CityName | Name | |
| Country | I_InsurClmInjuredPerson | Country | Venue: Ctry/Reg | |
| InsurClmInjuryInsurCompanyName | _Insu | BusinessPartnerName | Extracted Customer Name | |
| InsurClmRelationship | _Part | InsurClmRelationship | Rel. to PH | |
| InsurClmParticipantType | _Part | InsurClmParticipantType | Participtn Type |
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_InsurClmInjuredPersonDetails.
-- 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: IICLINJUPERSON
CREATE VIEW I_InsurClmInjuredPersonDetails AS
SELECT
I_InsurClmInjuredPerson.InsuranceClaim AS InsuranceClaim,
I_InsurClmInjuredPerson.BusinessPartner AS BusinessPartner,
I_InsurClmInjuredPerson.InsurClmSubobjectCategory AS InsurClmSubobjectCategory,
I_InsurClmInjuredPerson.InsurClmSubobject AS InsurClmSubobject,
I_InsurClmInjuredPerson.InsurClmParticipantRole AS InsurClmParticipantRole,
_Itad.InsurClmDmgdSubObject AS InsurClmDamagedObject,
_Insu.InsurClmSubobject AS InsurClmInjuryDetails,
I_InsurClmInjuredPerson.BusinessPartnerName AS BusinessPartnerName,
I_InsurClmInjuredPerson.BirthDate AS BirthDate,
I_InsurClmInjuredPerson.HouseNumber AS HouseNumber,
I_InsurClmInjuredPerson.StreetName AS StreetName,
I_InsurClmInjuredPerson.CityName AS CityName,
I_InsurClmInjuredPerson.Country AS Country,
_Insu.BusinessPartnerName AS InsurClmInjuryInsurCompanyName,
_Part.InsurClmRelationship AS InsurClmRelationship,
_Part.InsurClmParticipantType AS InsurClmParticipantType
FROM I_InsurClmInjuredPerson
LEFT OUTER JOIN I_InsurClmParticipant AS _Part ON InsuranceClaim = _Part.InsuranceClaim AND BusinessPartner = _Part.BusinessPartner -- association [1..1]
LEFT OUTER JOIN I_InsurClmDamageAssignment AS _Itad ON InsuranceClaim = _Itad.InsuranceClaim AND InsurClmSubobject = _Itad.InsurClmDamagedObject AND _Itad.InsurClmSubobjectCategory = 'DD' -- association [0..1]
LEFT OUTER JOIN I_InsurClmPrtcpntOccrnc AS _Insu ON InsuranceClaim = _Insu.InsuranceClaim AND _Insu.InsurClmSubobjectCategory = 'PA' AND _Insu.InsurClmParticipantRole = 'EXTI' AND BusinessPartner = _Insu.InsurClmSubobject -- association [0..*]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA