Deprecated SAP_INTERNAL_API
This CDS view is deprecated in S/4HANA. Use I_EnterpriseProjectRole instead. View all deprecated CDS views →

I_PPM_ProjectRole

DDL: I_PPM_PROJECTROLE Type: view BASIC Package: PPM_OBJECTS_DEPRECATED

Project Role

I_PPM_ProjectRole is a Basic CDS View that provides data about "Project Role" in SAP S/4HANA. It reads from 3 data sources (cgpl_hierarchy, I_PPM_Task, dpr_part) and exposes 20 fields with key field ProjectRoleUUID. It has 3 associations to related views. Part of development package PPM_OBJECTS_DEPRECATED.

Data Sources (3)

SourceAliasJoin Type
cgpl_hierarchy hier left_outer
I_PPM_Task pst left_outer
dpr_part role from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_PPM_ProjectRoleText _ProjectRoleText $projection.ProjectRoleUUID = _ProjectRoleText.ProjectRoleUUID
[1..*] I_PPM_ProjectRoleTypeText _ProjectRoleTypeText $projection.ProjectRoleType = _ProjectRoleTypeText. ProjectRoleType
[1..1] I_PPM_ProjectRoleType _ProjectRoleType $projection.ProjectRoleType = _ProjectRoleType.ProjectRoleType

Annotations (15)

NameValueLevelField
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_EnterpriseProjectRole view
EndUserText.label Project Role view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
AbapCatalog.sqlViewName IPPMPROROLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.representativeKey ProjectRoleUUID view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY ProjectRoleUUID
ProjectRoleType dpr_part participant_role Role Type
ObjectType
ProjectSummaryTaskUUID I_PPM_Task TaskUUID UUID 22 char.
ProjectUUID I_PPM_Task ProjectUUID Project UUID
ProjectRole dpr_part participant_id Role ID
_ProjectRoleText _ProjectRoleText
_ProjectRoleTypeText _ProjectRoleTypeText
_ProjectRoleType _ProjectRoleType
ProjectInternalID ProjectInternalID Project Def.
WBSElementInternalID WBSElementInternalID WBS Internal ID
_I_Project I_PPM_Task _I_Project
ProjectProfileCode
FunctionalArea
CompanyCode
_ProjObj I_PPM_Task _ProjObj
_AuthUser I_PPM_Task _AuthUser
_AuthSubst I_PPM_Task _AuthSubst
_AuthRole I_PPM_Task _AuthRole
_AuthGroup I_PPM_Task _AuthGroup

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_PPM_ProjectRole.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW I_PPM_ProjectRole AS
SELECT
  cast( role.guid as /s4ppm/tv_entity_guid ) AS ProjectRoleUUID,
  role.participant_role AS ProjectRoleType,
  'MTG' AS ObjectType,
  pst.TaskUUID AS ProjectSummaryTaskUUID,
  pst.ProjectUUID AS ProjectUUID,
  role.participant_id AS ProjectRole,
  ProjectInternalID,
  WBSElementInternalID,
  pst._I_Project AS _I_Project,
  pst._I_Project.ProjectProfileCode AS ProjectProfileCode,
  pst._I_Project.FunctionalArea AS FunctionalArea,
  pst._I_Project.CompanyCode AS CompanyCode,
  pst._ProjObj AS _ProjObj,
  pst._AuthUser AS _AuthUser,
  pst._AuthSubst AS _AuthSubst,
  pst._AuthRole AS _AuthRole,
  pst._AuthGroup AS _AuthGroup
FROM dpr_part AS role
LEFT OUTER JOIN cgpl_hierarchy AS hier ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_PPM_Task AS pst ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_PPM_ProjectRoleText AS _ProjectRoleText ON ProjectRoleUUID = _ProjectRoleText.ProjectRoleUUID  -- association [1..1]
LEFT OUTER JOIN I_PPM_ProjectRoleTypeText AS _ProjectRoleTypeText ON ProjectRoleType = _ProjectRoleTypeText. ProjectRoleType  -- association [1..*]
LEFT OUTER JOIN I_PPM_ProjectRoleType AS _ProjectRoleType ON ProjectRoleType = _ProjectRoleType.ProjectRoleType  -- association [1..1]
;