R_InsuranceClaimNoteTP

DDL: R_INSURANCECLAIMNOTETP Type: view_entity TRANSACTIONAL Package: ICL_VDM_CLAIM_API

Insurance Claim Note - TP

R_InsuranceClaimNoteTP is a Transactional CDS View that provides data about "Insurance Claim Note - TP" in SAP S/4HANA. It reads from 1 data source (I_InsurClmNoteExtn) and exposes 15 fields with key fields InsuranceClaim, InsurClmNoteYear, InsurClmNote. Part of development package ICL_VDM_CLAIM_API.

Data Sources (1)

SourceAliasJoin Type
I_InsurClmNoteExtn I_InsurClmNoteExtn from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Insurance Claim Note - TP view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim InsuranceClaim
KEY InsurClmNoteYear InsurClmNoteYear
KEY InsurClmNote InsurClmNote
InsurClmNoteAuthznGrp InsurClmNoteAuthznGrp
InsurClmNoteType InsurClmNoteType
InsurClmSubclm InsurClmSubclm
InsurClmNoteStatus InsurClmNoteStatus
InsurClmNoteUUID NoteID
InsurClmNoteTitle InsurClmNoteTitle
CreatedByUser CreatedByUser
CreationDateTime CreationDateTime
LastChangedByUser LastChangedByUser
ChangedOnDateTime ChangedOnDateTime
InsurClmNoteText InsurClmNoteText
_InsuranceClaim _InsuranceClaim
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Insurance Claim Note - TP'
@Metadata.ignorePropagatedAnnotations: true
@VDM: {
  viewType:#TRANSACTIONAL,
  lifecycle.contract.type:#SAP_INTERNAL_API
}
@ObjectModel: {
   semanticKey: [ 'InsuranceClaim' ],
usageType:{
  dataClass:      #TRANSACTIONAL,
  serviceQuality: #C,
  sizeCategory:   #XL
}
}
define view entity R_InsuranceClaimNoteTP
  as select from I_InsurClmNoteExtn
  association to parent R_InsuranceClaimTP as _InsuranceClaim
     on $projection.InsuranceClaim = _InsuranceClaim.InsuranceClaim
     
{
  key InsuranceClaim,
  key InsurClmNoteYear,
  key InsurClmNote,
      InsurClmNoteAuthznGrp,
      @ObjectModel.sapObjectNodeTypeReference: 'InsuranceClaimNoteType' 
      InsurClmNoteType,
      InsurClmSubclm,
      @ObjectModel.sapObjectNodeTypeReference: 'InsuranceClaimNoteStatus' 
      InsurClmNoteStatus,
      NoteID as InsurClmNoteUUID,
      InsurClmNoteTitle,
      CreatedByUser,
      CreationDateTime,
      LastChangedByUser,
      ChangedOnDateTime,
      InsurClmNoteText,

      //Associations

      _InsuranceClaim
}