I_InsurClmCoverageAll
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)
| Source | Alias | Join Type |
|---|---|---|
| I_InsuranceClaim | I_InsuranceClaim | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | I_InsurClmPermittedCvrgType | _coverages | $projection.InsurClmType = _coverages.InsurClmType and $projection.InsurClmTypeGeneration = _coverages.InsurClmPolicyProdGeneration and $projection.InsurClmTypeVers = _coverages.InsurClmPolicyProductVersion |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA