I_MDQualityRuleExportStatus
Master Data Quality Rule Export Status
I_MDQualityRuleExportStatus is a Basic CDS View that provides data about "Master Data Quality Rule Export Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field MDQltyRuleExportStatus. 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_MDQualityRuleExportStatusT | _MDQualityRuleExportStatusT | $projection.MDQltyRuleExportStatus = _MDQualityRuleExportStatusT.MDQltyRuleExportStatus |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | MDQltyRuleExportStatus | view | |
| Analytics.technicalName | IMDQRULEXPSTS | 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 Export Status | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MDQltyRuleExportStatus | |||
| _MDQualityRuleExportStatusT | _MDQualityRuleExportStatusT |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'MDQltyRuleExportStatus'
@Analytics.technicalName: 'IMDQRULEXPSTS'
@ObjectModel.usageType: { sizeCategory: #S, dataClass: #CUSTOMIZING, serviceQuality: #C }
@ObjectModel.resultSet.sizeCategory: #XS
@VDM.viewType: #BASIC
@EndUserText.label: 'Master Data Quality Rule Export Status'
define view entity I_MDQualityRuleExportStatus
as select from dd07l
association [0..*] to I_MDQualityRuleExportStatusT as _MDQualityRuleExportStatusT on $projection.MDQltyRuleExportStatus = _MDQualityRuleExportStatusT.MDQltyRuleExportStatus
{
@Consumption.filter.hidden: true
@ObjectModel.text.association: '_MDQualityRuleExportStatusT'
@UI.textArrangement: #TEXT_ONLY
key cast( left( domvalue_l, 2) as mdq_rule_exp_status preserving type ) as MDQltyRuleExportStatus,
@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 MDQltyRuleExprtStsCriticality,
@Consumption.filter.hidden: true
_MDQualityRuleExportStatusT
}
where
domname = 'MDQ_RULE_EXP_STATUS'
and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_MDQUALITYRULEEXPORTSTATUST"
],
"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