C_MasterDataAttachmentFileTP

DDL: C_MASTERDATAATTACHMENTFILETP Type: view_entity CONSUMPTION

Master Data Attachment File

C_MasterDataAttachmentFileTP is a Consumption CDS View that provides data about "Master Data Attachment File" in SAP S/4HANA. It reads from 1 data source (I_MasterDataAttachmentFileTP) and exposes 4 fields with key field MasterDataAttachmentUUID. It is exposed through 1 OData service (MASTERDATAATTCHLINKSD).

Data Sources (1)

SourceAliasJoin Type
I_MasterDataAttachmentFileTP I_MasterDataAttachmentFileTP projection

Annotations (8)

NameValueLevelField
EndUserText.label Master Data Attachment File view
Metadata.allowExtensions true view
Search.searchable false view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

OData Services (1)

ServiceBindingVersionContractRelease
MASTERDATAATTCHLINKSD MASTERDATAATTCHLINKSRV V4 C1 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MasterDataAttachmentUUID MasterDataAttachmentUUID
MasterDataAttachmentFileName _Link MasterDataAttachmentFileName
MasterDataAttachmentMimeType _Link MasterDataAttachmentMimeType
MDAttachmentContentBinary MDAttachmentContentBinary
@EndUserText.label: 'Master Data Attachment File'
@AbapCatalog.viewEnhancementCategory: [#NONE]
@Metadata.allowExtensions: true
@Search.searchable: false
@VDM.viewType: #CONSUMPTION
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType: { serviceQuality: #C, sizeCategory: #M, dataClass: #TRANSACTIONAL }
@VDM.usage.type: [ #TRANSACTIONAL_PROCESSING_SERVICE ]

define view entity C_MasterDataAttachmentFileTP
  // provider contract transactional_quer

  as projection on I_MasterDataAttachmentFileTP
{
  key MasterDataAttachmentUUID,
      _Link.MasterDataAttachmentFileName,
      _Link.MasterDataAttachmentMimeType,
      @Semantics.largeObject: {
        contentDispositionPreference: #ATTACHMENT,
        fileName: 'MasterDataAttachmentFileName',
        mimeType: 'MasterDataAttachmentMimeType'
      }
      MDAttachmentContentBinary,

      _Link : redirected to parent C_MasterDataAttachmentLinkTP
}