I_MasterDataNoteTP

DDL: I_MASTERDATANOTETP Type: view_entity TRANSACTIONAL Package: MDC_NOTES

Master Data Note

I_MasterDataNoteTP is a Transactional CDS View that provides data about "Master Data Note" in SAP S/4HANA. It reads from 1 data source (I_MasterDataNote) and exposes 9 fields with key field MasterDataNoteUUID. It has 1 association to related views. Part of development package MDC_NOTES.

Data Sources (1)

SourceAliasJoin Type
I_MasterDataNote I_MasterDataNote from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MasterDataNoteItemTP _NoteItem

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Master Data Note view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #TRANSACTIONAL view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY MasterDataNoteUUID MasterDataNoteUUID
MasterDataNoteObjectType MasterDataNoteObjectType
MasterDataNoteObjectIdentifier MasterDataNoteObjectIdentifier
MasterDataNoteBlock MasterDataNoteBlock
MasterDataNoteCreatedDateTime MasterDataNoteCreatedDateTime
MasterDataNoteCreatedBy MasterDataNoteCreatedBy
MasterDataNoteChangedDateTime MasterDataNoteChangedDateTime
MasterDataNoteChangedBy MasterDataNoteChangedBy
_NoteItem _NoteItem
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Master Data Note'
@ObjectModel.usageType: { serviceQuality: #C, sizeCategory: #XL, dataClass: #TRANSACTIONAL }
@VDM.viewType: #TRANSACTIONAL
define root view entity I_MasterDataNoteTP
  as select from I_MasterDataNote
  composition [0..*] of I_MasterDataNoteItemTP as _NoteItem
{
  key MasterDataNoteUUID,
      MasterDataNoteObjectType,
      MasterDataNoteObjectIdentifier,
      MasterDataNoteBlock,
      MasterDataNoteCreatedDateTime,
      MasterDataNoteCreatedBy,
      MasterDataNoteChangedDateTime,
      MasterDataNoteChangedBy,

      _NoteItem
}