I_InsurClm1stNotifVehDriverTP

DDL: I_INSURCLM1STNOTIFVEHDRIVERTP Type: view TRANSACTIONAL

Schadenmeldung - Fahrer

I_InsurClm1stNotifVehDriverTP is a Transactional CDS View that provides data about "Schadenmeldung - Fahrer" in SAP S/4HANA. It reads from 1 data source (I_InsurClm1stNotifVehDriver) and exposes 22 fields with key fields InsuranceClaim, InsurClmDamagedObject, BusinessPartner. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_InsurClm1stNotifVehDriver I_InsurClm1stNotifVehDriver from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_InsurClm1stNotifDmgdVehTP _DamageVehicle $projection.InsuranceClaim = _DamageVehicle.InsuranceClaim and $projection.InsurClmDamagedObject = _DamageVehicle.InsurClmDamagedObject
[1..1] I_InsurClm1stNotifTP _Claim $projection.InsuranceClaim = _Claim.InsuranceClaim

Annotations (15)

NameValueLevelField
EndUserText.label Schadenmeldung - Fahrer view
AbapCatalog.sqlViewName ICL1STNFDRIVERTP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
VDM.viewType #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.transactionalProcessingEnabled true view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.writeDraftPersistence ICL1STNFDRIVERDR view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view

Fields (22)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim InsuranceClaim Claim Number
KEY InsurClmDamagedObject InsurClmDamagedObject Damaged Object
KEY BusinessPartner BusinessPartner Issuing Authority
InsurClmParticipantRole InsurClmParticipantRole ParticipantRole
LastChangedByUser LastChangedByUser User Name
ChangedOnDateTime ChangedOnDateTime Last Changed At
InsuranceContract _DamageVehicle InsuranceContract Contract
BusinessPartnerName BusinessPartnerName Extracted Customer Name
FormOfAddress FormOfAddress Title Key
LastName LastName Last Name
FirstName FirstName First Name
StreetName StreetName Text
HouseNumber HouseNumber House Number
CityName CityName Name
PostalCode PostalCode Postal Code
Region Region Venue Region
Country Country Venue: Ctry/Reg
PhoneNumber PhoneNumber Telephone no.
EmailAddress EmailAddress E-Mail Address
_BusinessPartner _BusinessPartner
_Claim _Claim
_DamageVehicle _DamageVehicle

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_InsurClm1stNotifVehDriverTP.
-- 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_InsurClm1stNotifVehDriverTP AS
SELECT
  InsuranceClaim,
  InsurClmDamagedObject,
  BusinessPartner,
  InsurClmParticipantRole,
  LastChangedByUser,
  ChangedOnDateTime,
  _DamageVehicle.InsuranceContract AS InsuranceContract,
  BusinessPartnerName,
  FormOfAddress,
  LastName,
  FirstName,
  StreetName,
  HouseNumber,
  CityName,
  PostalCode,
  Region,
  Country,
  PhoneNumber,
  EmailAddress
FROM I_InsurClm1stNotifVehDriver
LEFT OUTER JOIN I_InsurClm1stNotifDmgdVehTP AS _DamageVehicle ON InsuranceClaim = _DamageVehicle.InsuranceClaim AND InsurClmDamagedObject = _DamageVehicle.InsurClmDamagedObject  -- association [1..1]
LEFT OUTER JOIN I_InsurClm1stNotifTP AS _Claim ON InsuranceClaim = _Claim.InsuranceClaim  -- association [1..1]
;