I_MDQltyBusRuleEvalImpactText
Master Data Quality Business Rule Evaluation Impact Text
I_MDQltyBusRuleEvalImpactText is a Basic CDS View that provides data about "Master Data Quality Business Rule Evaluation Impact Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key field Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMDQBSRLEVALIMPT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | MDQltyBusRuleEvalImpact | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view | |
| EndUserText.label | Master Data Quality Business Rule Evaluation Impact Text | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | ddlanguage | ||
| MDQltyBusRuleEvalImpactText | Impact | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IMDQBSRLEVALIMPT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: { dataClass: #MASTER, serviceQuality: #C, sizeCategory: #S }
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'MDQltyBusRuleEvalImpact'
@VDM.viewType: #BASIC
@Search.searchable: true
@EndUserText.label: 'Master Data Quality Business Rule Evaluation Impact Text'
define view I_MDQltyBusRuleEvalImpactText
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] }*/
as select from dd07t
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.text.element: [ 'MDQltyBusRuleEvalImpactText' ]
key case
when domvalue_l = '3' then cast(3 as mdq_rule_eval_impact preserving type)
when domvalue_l = '2' then cast(2 as mdq_rule_eval_impact preserving type)
when domvalue_l = '1' then cast(1 as mdq_rule_eval_impact preserving type)
else cast(0 as mdq_rule_eval_impact preserving type)
end as MDQltyBusRuleEvalImpact,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language
key ddlanguage as Language,
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.7, ranking: #HIGH }
@Semantics.text
@EndUserText.label: 'Impact'
@Consumption.filter.hidden
cast( ddtext as val_text preserving type ) as MDQltyBusRuleEvalImpactText,
_Language
}
where
domname = 'MDQ_EVALUATION_IMPACT'
and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"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