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

A_DevProjRoleStaffing

DDL: A_DEVPROJROLESTAFFING Type: view_entity COMPOSITE

Development Project Staffing Details

A_DevProjRoleStaffing is a Composite CDS View that provides data about "Development Project Staffing Details" in SAP S/4HANA. It reads from 1 data source (R_DevProjRoleStaffingTP) and exposes 18 fields with key fields ProjectRoleUUID, ProjectUUID, BusinessPartnerUUID. It has 5 associations to related views.

Data Sources (1)

SourceAliasJoin Type
R_DevProjRoleStaffingTP R_DevProjRoleStaffingTP projection

Associations (5)

CardinalityTargetAliasCondition
[0..*] A_DevelopmentProjectElement _ProjectElement $projection.DevProjElmntUUID = _ProjectElement.DevProjElmntUUID
[1..*] A_DevelopmentProjectRole _Role $projection.ProjectRoleUUID = _Role.ProjectRoleUUID
[0..*] A_DevRoleTaskAssignment _TaskRoleAssignment $projection.ProjectRoleUUID = _TaskRoleAssignment.ProjectRoleUUID and $projection.DevProjElmntUUID = _TaskRoleAssignment.DevProjElmntUUID and $projection.DevProjRoleStfngShadowRoleUUID = _TaskRoleAssignment.DevRoleTskAssgmtShadowRoleUUID
[1..1] A_DevProjResponsible _ProjectResponsible $projection.ProjectRoleUUID = _ProjectResponsible.ProjectRoleUUID and $projection.BusinessPartnerUUID = _ProjectResponsible.BusinessPartnerUUID
[1..*] A_DevProjectElementResponsible _ProjectElmntResponsible $projection.BusinessPartnerUUID = _ProjectElmntResponsible.BusinessPartnerUUID and $projection.ProjectRoleUUID = _ProjectElmntResponsible.ProjectRoleUUID and $projection.DevProjElmntUUID = _ProjectElmntResponsible.DevProjElmntUUID

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Development Project Staffing Details view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor A_DevProjRoleStaffing_2 view
OData.entityType.name DevProjRoleStaffing_Type view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY ProjectRoleUUID ProjectRoleUUID Role
KEY ProjectUUID ProjectUUID Project UUID
KEY BusinessPartnerUUID BusinessPartnerUUID UUID
DevProjElmntUUID DevProjElmntUUID
DevProjRoleStfngShadowRoleUUID DevProjRoleStfngShadowRoleUUID
StaffingUUID StaffingUUID
DevProjRoleStfngBeginDate DevProjRoleStfngBeginDate
DevProjRoleStfngEndDate DevProjRoleStfngEndDate
PlannedWorkQuantity PlannedWorkQuantity
PlannedWorkQuantityUnit PlannedWorkQuantityUnit
DevProjRoleStfngBookingType DevProjRoleStfngBookingType
PlannedStartDate PlannedStartDate Latest Planned Start
DevProjRoleStfngPlndFinishDate DevProjRoleStfngPlndFinishDate
_ProjectElement _ProjectElement
_TaskRoleAssignment _TaskRoleAssignment
_Role _Role
_ProjectResponsible _ProjectResponsible
_ProjectElmntResponsible _ProjectElmntResponsible

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 A_DevProjRoleStaffing.
-- 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 A_DevProjRoleStaffing AS
SELECT
  ProjectRoleUUID,
  ProjectUUID,
  BusinessPartnerUUID,
  DevProjElmntUUID,
  DevProjRoleStfngShadowRoleUUID,
  StaffingUUID,
  DevProjRoleStfngBeginDate,
  DevProjRoleStfngEndDate,
  PlannedWorkQuantity,
  PlannedWorkQuantityUnit,
  DevProjRoleStfngBookingType,
  PlannedStartDate,
  DevProjRoleStfngPlndFinishDate
FROM R_DevProjRoleStaffingTP
LEFT OUTER JOIN A_DevelopmentProjectElement AS _ProjectElement ON DevProjElmntUUID = _ProjectElement.DevProjElmntUUID  -- association [0..*]
LEFT OUTER JOIN A_DevelopmentProjectRole AS _Role ON ProjectRoleUUID = _Role.ProjectRoleUUID  -- association [1..*]
LEFT OUTER JOIN A_DevRoleTaskAssignment AS _TaskRoleAssignment ON ProjectRoleUUID = _TaskRoleAssignment.ProjectRoleUUID AND DevProjElmntUUID = _TaskRoleAssignment.DevProjElmntUUID AND DevProjRoleStfngShadowRoleUUID = _TaskRoleAssignment.DevRoleTskAssgmtShadowRoleUUID  -- association [0..*]
LEFT OUTER JOIN A_DevProjResponsible AS _ProjectResponsible ON ProjectRoleUUID = _ProjectResponsible.ProjectRoleUUID AND BusinessPartnerUUID = _ProjectResponsible.BusinessPartnerUUID  -- association [1..1]
LEFT OUTER JOIN A_DevProjectElementResponsible AS _ProjectElmntResponsible ON BusinessPartnerUUID = _ProjectElmntResponsible.BusinessPartnerUUID AND ProjectRoleUUID = _ProjectElmntResponsible.ProjectRoleUUID AND DevProjElmntUUID = _ProjectElmntResponsible.DevProjElmntUUID  -- association [1..*]
;