I_InsurClmCoverageAll

DDL: I_INSURCLMCOVERAGEALL SQL: IICLCLAIMCVRG Type: view COMPOSITE

View for all coverages for a Claim

I_InsurClmCoverageAll is a Composite CDS View that provides data about "View for all coverages for a Claim" in SAP S/4HANA. It reads from 1 data source (I_InsuranceClaim) and exposes 7 fields with key fields InsuranceClaim, InsurClmType, InsurClmTypeGeneration, InsurClmTypeVers, InsurClmSubclmType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_InsuranceClaim I_InsuranceClaim from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_InsurClmPermittedCvrgType _coverages $projection.InsurClmType = _coverages.InsurClmType and $projection.InsurClmTypeGeneration = _coverages.InsurClmPolicyProdGeneration and $projection.InsurClmTypeVers = _coverages.InsurClmPolicyProductVersion

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IICLCLAIMCVRG view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label View for all coverages for a Claim view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim InsuranceClaim
KEY InsurClmType InsurClmType
KEY InsurClmTypeGeneration InsurClmTypeGeneration
KEY InsurClmTypeVers InsurClmTypeVers
KEY InsurClmSubclmType _coverages InsurClmSubclmType
KEY InsurClmCoverageType _coverages InsurClmCoverageType
KEY InsurClmBenefitType _coverages InsurClmBenefitType
@AbapCatalog.sqlViewName: 'IICLCLAIMCVRG'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'View for all coverages for a Claim'

@VDM.viewType: #COMPOSITE
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ClientHandling.algorithm: #SESSION_VARIABLE


define view I_InsurClmCoverageAll
  as select from I_InsuranceClaim
  association [1..*] to I_InsurClmPermittedCvrgType as _coverages on  $projection.InsurClmType           = _coverages.InsurClmType
                                                                  and $projection.InsurClmTypeGeneration = _coverages.InsurClmPolicyProdGeneration
                                                                  and $projection.InsurClmTypeVers       = _coverages.InsurClmPolicyProductVersion
{

  key InsuranceClaim,
  key InsurClmType,
  key InsurClmTypeGeneration,
  key InsurClmTypeVers,
  key _coverages.InsurClmSubclmType   as InsurClmSubclmType,
  key _coverages.InsurClmCoverageType as InsurClmCoverageType,
  key _coverages.InsurClmBenefitType  as InsurClmBenefitType
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_INSURANCECLAIM",
"I_INSURCLMPERMITTEDCVRGTYPE"
],
"ASSOCIATED":
[
"I_INSURCLMPERMITTEDCVRGTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/