I_PPM_ProjectRoleTP
Project Roles Transactional Object View
I_PPM_ProjectRoleTP is a Transactional CDS View that provides data about "Project Roles Transactional Object View" in SAP S/4HANA. It reads from 1 data source (I_PPM_ProjectRole) and exposes 9 fields with key field ProjectRoleUUID. It has 1 association to related views. Part of development package VDM_PPM_OBJECTS_TP_ROLE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_PPM_ProjectRole | role | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_PPM_ProjectTP | _Root | $projection.ProjectRoleUUID = _Root.ProjectUUID |
Annotations (18)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPPMPRJROLETP | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | Project Roles Transactional Object View | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.transactionalProcessingEnabled | true | view | |
| ObjectModel.compositionRoot | true | view | |
| ObjectModel.draftEnabled | true | view | |
| ObjectModel.writeDraftPersistence | PPM_PRJROLE_D | view | |
| ObjectModel.createEnabled | false | view | |
| ObjectModel.updateEnabled | true | view | |
| ObjectModel.deleteEnabled | true | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #L | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProjectRoleUUID | I_PPM_ProjectRole | ProjectRoleUUID | |
| ProjectSummaryTaskUUID | I_PPM_ProjectRole | ProjectSummaryTaskUUID | ||
| ProjectUUID | ProjectUUID | |||
| ProjectRole | I_PPM_ProjectRole | ProjectRole | ||
| ProjectRoleType | I_PPM_ProjectRole | ProjectRoleType | ||
| _ProjectRoleType | _ProjectRoleType | |||
| _ProjectRoleText | _ProjectRoleText | |||
| _ProjectRoleTypeText | _ProjectRoleTypeText | |||
| _Root | _Root |
@AbapCatalog.sqlViewName: 'IPPMPRJROLETP'
@VDM.viewType: #TRANSACTIONAL
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Project Roles Transactional Object View'
@AccessControl.personalData.blocking: #REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
transactionalProcessingEnabled: true,
compositionRoot: true,
draftEnabled: true, //draft processing
writeDraftPersistence: 'PPM_PRJROLE_D', //draft processing
createEnabled: false,
updateEnabled: true, //'EXTERNAL_CALCULATION',
deleteEnabled: true, //'EXTERNAL_CALCULATION',
usageType: {
serviceQuality: #D,
dataClass: #MIXED,
sizeCategory: #L
}
}
define view I_PPM_ProjectRoleTP as select from I_PPM_ProjectRole as role
association [1..1] to I_PPM_ProjectTP as _Root on $projection.ProjectRoleUUID = _Root.ProjectUUID
{
key role.ProjectRoleUUID,
role.ProjectSummaryTaskUUID,
ProjectUUID,
role.ProjectRole,
role.ProjectRoleType,
/* Associations */
_ProjectRoleType,
_ProjectRoleText,
_ProjectRoleTypeText,
_Root
//staffing.BusinessPartnerUUID
}
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