R_InsuranceClaimHandlerTP

DDL: R_INSURANCECLAIMHANDLERTP Type: view_entity TRANSACTIONAL

Insurance Claim Handler - TP

R_InsuranceClaimHandlerTP is a Transactional CDS View that provides data about "Insurance Claim Handler - TP" in SAP S/4HANA. It reads from 1 data source (I_InsurClmHandler) and exposes 7 fields with key field InsuranceClaim.

Data Sources (1)

SourceAliasJoin Type
I_InsurClmHandler I_InsurClmHandler from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Insurance Claim Handler - 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 (7)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim InsuranceClaim
ContactCardID ContactCardID
FullName FullName
PhoneNumber PhoneNumber
EmailAddress EmailAddress
InsurClmType InsurClmType
InsurClmAuthznGrp InsurClmAuthznGrp
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Insurance Claim Handler - TP'
@Metadata.ignorePropagatedAnnotations: true
@VDM: {
  viewType:#TRANSACTIONAL,
  lifecycle.contract.type:#SAP_INTERNAL_API
}
@ObjectModel: {
   semanticKey: [ 'InsuranceClaim' ],
usageType:{
  dataClass:      #TRANSACTIONAL,
  serviceQuality: #C,
  sizeCategory:   #XL
}
}
define root view entity R_InsuranceClaimHandlerTP
  as select from I_InsurClmHandler
  
{
  key InsuranceClaim,
      ContactCardID,
      @Semantics.name.fullName: true
      FullName, 
      @Semantics.telephone.type: [#WORK]
      PhoneNumber,     
      @Semantics.eMail.type:  [ #PREF, #WORK ]
      @Semantics.eMail.address: true
      EmailAddress,
      InsurClmType,
      InsurClmAuthznGrp
}