I_MasterDataNoteBlock
Master Data Note Block
I_MasterDataNoteBlock is a Basic CDS View (Dimension) that provides data about "Master Data Note Block" in SAP S/4HANA. It reads from 1 data source (DD07L) and exposes 3 fields with key field MasterDataNoteBlock. It has 1 association to related views. Part of development package MDC_NOTES.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| DD07L | DD07L | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_MasterDataNoteBlockText | _Text | |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.internalName | #LOCAL | view | |
| Consumption.ranked | true | view | |
| EndUserText.label | Master Data Note Block | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ObjectModel.representativeKey | MasterDataNoteBlock | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| Search.searchable | true | view | |
| VDM.viewType | #BASIC | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MasterDataNoteBlock | |||
| DomainValue | DD07L | DOMVALUE_L | ||
| _Text | _Text |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL
@Consumption.ranked: true
@EndUserText.label: 'Master Data Note Block'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.representativeKey: 'MasterDataNoteBlock'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.resultSet.sizeCategory: #XS
@Search.searchable: true
@VDM.viewType: #BASIC
define root view entity I_MasterDataNoteBlock
as select from DD07L
composition [0..*] of I_MasterDataNoteBlockText as _Text
{
@ObjectModel.text.association: '_Text'
key cast( DD07L.DOMVALUE_L as MDC_NOTE_BLOCK ) as MasterDataNoteBlock,
@Analytics.hidden: true
@Consumption.hidden: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
DD07L.DOMVALUE_L as DomainValue,
_Text
}
where
DD07L.DOMNAME = 'MDC_NOTE_BLOCK'
and DD07L.AS4LOCAL = 'A'
and DD07L.AS4VERS = '0000'
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