P_EntProjTeamChgDocRole

DDL: P_ENTPROJTEAMCHGDOCROLE Type: view_entity COMPOSITE Package: VDM_PPM_OBJECTS_CHANGEDOC

Display Last Change Documents for Role

P_EntProjTeamChgDocRole is a Composite CDS View that provides data about "Display Last Change Documents for Role" in SAP S/4HANA. It reads from 1 data source (I_ChangeDocumentItem) and exposes 3 fields with key fields ChangeDocObject, ChangeDocTableKey. Part of development package VDM_PPM_OBJECTS_CHANGEDOC.

Data Sources (1)

SourceAliasJoin Type
I_ChangeDocumentItem cdpos from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Display Last Change Documents for Role view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ChangeDocObject I_ChangeDocumentItem ChangeDocObject
KEY ChangeDocTableKey I_ChangeDocumentItem ChangeDocTableKey
ChangeDocument
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Display Last Change Documents for Role'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #S,
  dataClass: #MIXED
}
@VDM.private:true
@VDM.viewType: #COMPOSITE

define view entity P_EntProjTeamChgDocRole
  as select from I_ChangeDocumentItem as cdpos
{
  key cdpos.ChangeDocObject,
  key cdpos.ChangeDocTableKey,
      max(cdpos.ChangeDocument) as ChangeDocument
}
where
      cdpos.DatabaseTable               = '/S4PPM/ENTITLMNT'
  and cdpos.ChangeDocDatabaseTableField = 'ROLE_GUID'
group by
  cdpos.ChangeDocObject,
  cdpos.ChangeDocTableKey