E_InsuranceClaimNote

DDL: E_INSURANCECLAIMNOTE Type: view_entity EXTENSION

Insurance Claim Note - Extension

E_InsuranceClaimNote is a Extension CDS View that provides data about "Insurance Claim Note - Extension" in SAP S/4HANA. It reads from 1 data source (iclnote) and exposes 3 fields with key fields InsuranceClaim, InsurClmNoteYear, InsurClmNote.

Data Sources (1)

SourceAliasJoin Type
iclnote Persistence from

Annotations (9)

NameValueLevelField
EndUserText.label Insurance Claim Note - Extension view
AbapCatalog.extensibility.elementSuffix ICL view
AbapCatalog.extensibility.quota.maximumFields 100 view
AbapCatalog.extensibility.quota.maximumBytes 1000 view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.viewType #EXTENSION view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim iclnote claim
KEY InsurClmNoteYear iclnote objyr
KEY InsurClmNote iclnote objno
@EndUserText.label: 'Insurance Claim Note - Extension'
@AbapCatalog.extensibility.extensible
@AbapCatalog.extensibility.elementSuffix: 'ICL'
@AbapCatalog.extensibility.quota.maximumFields: 100
@AbapCatalog.extensibility.quota.maximumBytes: 1000
@AbapCatalog.extensibility.dataSources: ['Persistence']

@AccessControl: {
  authorizationCheck: #PRIVILEGED_ONLY
}
@VDM                                  : {
  viewType                            : #EXTENSION
}
@ObjectModel: {
   usageType: {
     dataClass:      #TRANSACTIONAL,
     serviceQuality: #C,
     sizeCategory:   #XL
   }
}

define view entity E_InsuranceClaimNote
  as select from iclnote as Persistence
{
  key Persistence.claim    as InsuranceClaim,
  key Persistence.objyr as InsurClmNoteYear,
  key Persistence.objno as InsurClmNote


}
where
  Persistence.active = 'A'