I_MasterDataNoteItem

DDL: I_MASTERDATANOTEITEM Type: view_entity BASIC Package: MDC_NOTES

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)

SourceAliasJoin Type
mdc_note_item mdc_note_item from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_MasterDataNote _Note _Note.MasterDataNoteUUID = $projection.MasterDataNoteUUID

Annotations (6)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
}