I_ChmlCmplncMktCvrgSts
Coverage Status
I_ChmlCmplncMktCvrgSts is a Basic CDS View that provides data about "Coverage Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ChmlCmplncCvrgStatus. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | ChmlCmplncMktCvrgSts | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ChmlCmplncMktCvrgStsTxt | _Text | $projection.ChmlCmplncCvrgStatus = _Text.ChmlCmplncCvrgStatus |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Coverage Status | view | |
| AbapCatalog.sqlViewName | ICCMKTCVRGSTS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.representativeKey | ChmlCmplncCvrgStatus | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ChmlCmplncCvrgStatus | |||
| _Text | _Text |
@EndUserText.label: 'Coverage Status'
@AbapCatalog:
{
sqlViewName: 'ICCMKTCVRGSTS',
compiler.compareFilter: true
}
@AccessControl:
{
-- Customizing values of Coverage Status --> No auth. check necessary
authorizationCheck: #NOT_REQUIRED
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel:
{
usageType:
{
dataClass: #META,
sizeCategory: #S,
serviceQuality: #B
},
representativeKey: 'ChmlCmplncCvrgStatus'
}
define view I_ChmlCmplncMktCvrgSts
as select from dd07l as ChmlCmplncMktCvrgSts
--Text association
association [0..*] to I_ChmlCmplncMktCvrgStsTxt as _Text on $projection.ChmlCmplncCvrgStatus = _Text.ChmlCmplncCvrgStatus
{
@ObjectModel.text.association: '_Text'
key cast( substring(ChmlCmplncMktCvrgSts.domvalue_l, 1, 10) as ehfnd_cci_mcov_status ) as ChmlCmplncCvrgStatus,
_Text
}
where
ChmlCmplncMktCvrgSts.domname = 'EHFND_CCI_MCOV_STATUS'
and ChmlCmplncMktCvrgSts.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_CHMLCMPLNCMKTCVRGSTSTXT"
],
"BASE":
[],
"ANNO_REF":
[],
"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