I_MasterDataNoteItem
Master Data Note Item
I_MasterDataNoteItem is a Basic CDS View that provides data about "Master Data Note Item" in SAP S/4HANA. It reads from 1 data source (mdc_note_item) and exposes 7 fields with key field MasterDataNoteItemUUID. It has 1 association to related views. Part of development package MDC_NOTES.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| mdc_note_item | mdc_note_item | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_MasterDataNote | _Note | _Note.MasterDataNoteUUID = $projection.MasterDataNoteUUID |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Master Data Note Item | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.viewType | #BASIC | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MasterDataNoteItemUUID | note_item_guid | ||
| MasterDataNoteUUID | note_guid | |||
| MasterDataNoteItemContentText | content | |||
| MDNoteItemCreatedDateTime | created_on | |||
| MasterDataNoteItemCreatedBy | created_by | |||
| MDNoteItemChangedDateTime | changed_on | |||
| _Note | _Note |
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Master Data Note Item'
@ObjectModel.usageType: { serviceQuality: #C, sizeCategory: #XL, dataClass: #TRANSACTIONAL }
@VDM.viewType: #BASIC
define view entity I_MasterDataNoteItem
as select from mdc_note_item
association [1..1] to I_MasterDataNote as _Note on _Note.MasterDataNoteUUID = $projection.MasterDataNoteUUID
{
key note_item_guid as MasterDataNoteItemUUID,
/* start suppress warning shlporigin_not_inherited */
note_guid as MasterDataNoteUUID,
/* end suppress warning shlporigin_not_inherited */
content as MasterDataNoteItemContentText,
created_on as MDNoteItemCreatedDateTime,
created_by as MasterDataNoteItemCreatedBy,
changed_on as MDNoteItemChangedDateTime,
_Note
}
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