P_EntProjTeamChgDocRole
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)
| Source | Alias | Join Type |
|---|---|---|
| I_ChangeDocumentItem | cdpos | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
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