I_MDQualityRuleImportStatus
Master Data Quality Rule Import Status
I_MDQualityRuleImportStatus is a Basic CDS View that provides data about "Master Data Quality Rule Import Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field MDQltyRuleImportStatus. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_MDQualityRuleImportStatusT | _MDQualityRuleImportStatusT | $projection.MDQltyRuleImportStatus = _MDQualityRuleImportStatusT.MDQltyRuleImportStatus |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | MDQltyRuleImportStatus | view | |
| Analytics.technicalName | IMDQRULIMPSTS | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Master Data Quality Rule Import Status | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MDQltyRuleImportStatus | |||
| _MDQualityRuleImportStatusT | _MDQualityRuleImportStatusT |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'MDQltyRuleImportStatus'
@Analytics.technicalName: 'IMDQRULIMPSTS'
@ObjectModel.usageType: { sizeCategory: #S, dataClass: #CUSTOMIZING, serviceQuality: #C }
@ObjectModel.resultSet.sizeCategory: #XS
@VDM.viewType: #BASIC
@EndUserText.label: 'Master Data Quality Rule Import Status'
define view entity I_MDQualityRuleImportStatus
as select from dd07l
association [0..*] to I_MDQualityRuleImportStatusT as _MDQualityRuleImportStatusT on $projection.MDQltyRuleImportStatus = _MDQualityRuleImportStatusT.MDQltyRuleImportStatus
{
@Consumption.filter.hidden: true
@ObjectModel.text.association: '_MDQualityRuleImportStatusT'
@UI.textArrangement: #TEXT_ONLY
key cast( left( domvalue_l, 2) as mdq_rule_imp_status preserving type ) as MDQltyRuleImportStatus,
@Consumption.filter.hidden: true
@ObjectModel.readOnly: true
case
when domvalue_l = '02' or domvalue_l = '04' then 3
when domvalue_l = '01' or domvalue_l = '03' or domvalue_l = '07' or domvalue_l = '08' then 2
when domvalue_l = '05' or domvalue_l = '06' or domvalue_l = '09' or domvalue_l = '10' then 1
else 0 end as MDQltyRuleImprtStsCriticality,
@Consumption.filter.hidden: true
_MDQualityRuleImportStatusT
}
where
domname = 'MDQ_RULE_IMP_STATUS'
and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_MDQUALITYRULEIMPORTSTATUST"
],
"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