I_InsurClmFNOLVehDriver

DDL: I_INSURCLMFNOLVEHDRIVER SQL: ICLC Type: view_entity COMPOSITE Package: ICL_VDM_FIRSTNOTICEOFLOSS_RAP

Vehicle Driver FNOL

I_InsurClmFNOLVehDriver is a Composite CDS View that provides data about "Vehicle Driver FNOL" in SAP S/4HANA. It reads from 1 data source (I_InsurClmPrtcpntOccrnc) and exposes 6 fields with key fields InsuranceClaim, InsurClmSubobjectCategory, InsurClmSubobject, InsurClmParticipantRole, BusinessPartner. Part of development package ICL_VDM_FIRSTNOTICEOFLOSS_RAP.

Data Sources (1)

SourceAliasJoin Type
I_InsurClmPrtcpntOccrnc I_InsurClmPrtcpntOccrnc from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #X view
EndUserText.label Vehicle Driver FNOL view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim InsuranceClaim Claim Number
KEY InsurClmSubobjectCategory InsurClmSubobjectCategory Subobject Cat.
KEY InsurClmSubobject InsurClmSubobject Claim Subobject
KEY InsurClmParticipantRole InsurClmParticipantRole ParticipantRole
KEY BusinessPartner BusinessPartner Issuing Authority
InsurFactsSubobject

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_InsurClmFNOLVehDriver.
-- 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: ICLC

CREATE VIEW I_InsurClmFNOLVehDriver AS
SELECT
  InsuranceClaim,
  InsurClmSubobjectCategory,
  InsurClmSubobject,
  InsurClmParticipantRole,
  BusinessPartner,
  concat(InsurClmParticipantRole, BusinessPartner) AS InsurFactsSubobject
FROM I_InsurClmPrtcpntOccrnc
;