I_MRPMasterDataIssueSourceText
Source of an MRP Master Data Issue - Text
I_MRPMasterDataIssueSourceText is a Basic CDS View that provides data about "Source of an MRP Master Data Issue - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields MRPMasterDataIssueSource, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_MRPMasterDataIssueSource | _MRPMasterDataIssueSource | $projection.MRPMasterDataIssueSource = _MRPMasterDataIssueSource.MRPMasterDataIssueSource |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMRPMDIT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataExtraction.enabled | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| ObjectModel.representativeKey | MRPMasterDataIssueSource | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Source of an MRP Master Data Issue - Text | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MRPMasterDataIssueSource | |||
| KEY | Language | |||
| DomainValue | domvalue_l | |||
| MRPMasterDataIssueSourceName | ||||
| _MRPMasterDataIssueSource | _MRPMasterDataIssueSource | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IMRPMDIT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataExtraction.enabled: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY, #EXTRACTION_DATA_SOURCE]
@ObjectModel.representativeKey: 'MRPMasterDataIssueSource'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #META}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Source of an MRP Master Data Issue - Text'
/*+[hideWarning] { "IDS" : [ "KEY_CHECK", "CALCULATED_FIELD_CHECK" ] } */
define view I_MRPMasterDataIssueSourceText
as select from dd07t
association [1..1] to I_MRPMasterDataIssueSource as _MRPMasterDataIssueSource on $projection.MRPMasterDataIssueSource = _MRPMasterDataIssueSource.MRPMasterDataIssueSource
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_MRPMasterDataIssueSource'
@ObjectModel.text.element: 'MRPMasterDataIssueSourceName'
key cast( substring( domvalue_l, 1, 1 ) as pph_source_of_issue preserving type ) as MRPMasterDataIssueSource,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast( ddlanguage as spras preserving type) as Language,
@Analytics.hidden: true
@Consumption.hidden: true
domvalue_l as DomainValue,
@Semantics.text: true
@Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7}
cast( ddtext as ddtext preserving type ) as MRPMasterDataIssueSourceName,
// Associations
@ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
_MRPMasterDataIssueSource,
_Language
}
where domname = 'PPH_MRP_KIND'
and as4local = 'A'
and as4vers = '0000';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_MRPMASTERDATAISSUESOURCE"
],
"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