R_InsurClmCoverageReferralTP

DDL: R_INSURCLMCOVERAGEREFERRALTP Type: view_entity TRANSACTIONAL Package: ICL_VDM_CLAIM_API

Insurance Claim Coverage Referral - TP

R_InsurClmCoverageReferralTP is a Transactional CDS View that provides data about "Insurance Claim Coverage Referral - TP" in SAP S/4HANA. It reads from 1 data source (I_InsurClmCoverageReferral) and exposes 11 fields with key fields InsuranceClaim, InsurClmSubclm, InsurClmItem, InsurClmCoverageReferral. It has 1 association to related views. Part of development package ICL_VDM_CLAIM_API.

Data Sources (1)

SourceAliasJoin Type
I_InsurClmCoverageReferral I_InsurClmCoverageReferral from

Associations (1)

CardinalityTargetAliasCondition
[1..1] E_InsurClmCoverageReferral _Extension $projection.InsuranceClaim = _Extension.InsuranceClaim and $projection.InsurClmSubclm = _Extension.InsurClmSubclm and $projection.InsurClmItem = _Extension.InsurClmItem and $projection.InsurClmCoverageReferral = _Extension.InsurClmCoverageReferral

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Insurance Claim Coverage Referral - 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 (11)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim InsuranceClaim
KEY InsurClmSubclm InsurClmSubclm
KEY InsurClmItem InsurClmItem
KEY InsurClmCoverageReferral InsurClmCoverageReferral
InsurClmCoverageReferralType InsurClmCoverageReferralType
InsurClmCoverageReferralName InsurClmCoverageReferralName
InsurClmSubobjectCategory InsurClmSubobjectCategory
InsurClmSubobject InsurClmSubobject
InsurClmCvrgReferralRjcnReason InsurClmCvrgReferralRjcnReason
InsurClmCvrgReferralRjcnRsnTxt InsurClmCvrgReferralRjcnRsnTxt
_InsuranceClaim _InsuranceClaim
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Insurance Claim Coverage Referral - 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_InsurClmCoverageReferralTP
  as select from I_InsurClmCoverageReferral
  association to parent R_InsuranceClaimTP as _InsuranceClaim on $projection.InsuranceClaim = _InsuranceClaim.InsuranceClaim

  association [1..1] to E_InsurClmCoverageReferral as _Extension on $projection.InsuranceClaim            = _Extension.InsuranceClaim
                                                                and $projection.InsurClmSubclm            = _Extension.InsurClmSubclm
                                                                and $projection.InsurClmItem              = _Extension.InsurClmItem
                                                                and $projection.InsurClmCoverageReferral  = _Extension.InsurClmCoverageReferral
{

  key  InsuranceClaim,
  key  InsurClmSubclm,
  key  InsurClmItem,
  key  InsurClmCoverageReferral,
       @ObjectModel.sapObjectNodeTypeReference: 'InsurClaimCoverageReferralType'
       InsurClmCoverageReferralType,
       InsurClmCoverageReferralName,
       @ObjectModel.sapObjectNodeTypeReference: 'InsuranceClmSubobjectCategory'
       InsurClmSubobjectCategory,
       InsurClmSubobject,
       @ObjectModel.sapObjectNodeTypeReference: 'InsurClmCvrgReferralRjcnReason'
       InsurClmCvrgReferralRjcnReason,
       InsurClmCvrgReferralRjcnRsnTxt,

       //Associations

       _InsuranceClaim
}