I_InsurClmFNOLNoteTP

DDL: I_INSURCLMFNOLNOTETP Type: view_entity TRANSACTIONAL

Notes Fnol - TP

I_InsurClmFNOLNoteTP is a Transactional CDS View that provides data about "Notes Fnol - TP" in SAP S/4HANA. It reads from 1 data source (I_InsurClmNoteExtn) and exposes 9 fields with key fields InsuranceClaim, InsurClaimUUID, InsurClmNote, InsurClmNotesUUID, InsurClmNoteYear.

Data Sources (1)

SourceAliasJoin Type
I_InsurClmNoteExtn I_InsurClmNoteExtn from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
VDM.viewType #TRANSACTIONAL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #X view
EndUserText.label Notes Fnol - TP view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim InsuranceClaim
KEY InsurClaimUUID
KEY InsurClmNote InsurClmNote
KEY InsurClmNotesUUID
KEY InsurClmNoteYear InsurClmNoteYear
InsurClmNoteAuthznGrp InsurClmNoteAuthznGrp
InsurClmNoteTitle InsurClmNoteTitle
InsurClmNoteText InsurClmNoteText
_Claim _Claim
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #TRANSACTIONAL
@ObjectModel.usageType: {
    dataClass: #TRANSACTIONAL,
    sizeCategory: #L,
    serviceQuality: #X
}
@EndUserText.label: 'Notes Fnol - TP'
define view entity I_InsurClmFNOLNoteTP
  as select from I_InsurClmNoteExtn
  association to parent I_InsurClmFNOLTP as _Claim on  $projection.InsuranceClaim = _Claim.InsuranceClaim
                                                   and $projection.InsurClaimUUID = _Claim.InsurClaimUUID
{
               //          @ObjectModel.readOnly: true

  key          InsuranceClaim,
  key          cast ( hextobin('00000000000000000000000000000000') as sysuuid_x16 preserving type ) as InsurClaimUUID,
               //          @ObjectModel.readOnly: true

  key          InsurClmNote,
  key          cast ( hextobin('00000000000000000000000000000000') as sysuuid_x16 preserving type ) as InsurClmNotesUUID,

               //          @ObjectModel.readOnly: true

  key          InsurClmNoteYear,

               InsurClmNoteAuthznGrp,
               @Semantics.text: true
               InsurClmNoteTitle,
               @Semantics.text: true
               InsurClmNoteText,

               _Claim
}