A_DevProjRoleStaffing_2

DDL: A_DEVPROJROLESTAFFING_2 Type: view_entity CONSUMPTION

Development Project Staffing Details

A_DevProjRoleStaffing_2 is a Consumption CDS View that provides data about "Development Project Staffing Details" in SAP S/4HANA. It reads from 1 data source (R_DevProjRoleStaffingTP_2) and exposes 14 fields with key fields ProjectUUID, ProjectRoleUUID, DevProjRoleStfngShadowRoleUUID. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
R_DevProjRoleStaffingTP_2 R_DevProjRoleStaffingTP_2 projection

Associations (3)

CardinalityTargetAliasCondition
[1..1] A_DevelopmentProjectRole _Role $projection.ProjectRoleUUID = _Role.ProjectRoleUUID
[0..*] A_DevRoleTaskAssignment_2 _TaskRoleAssignment $projection.ProjectRoleUUID = _TaskRoleAssignment.ProjectRoleUUID and $projection.DevProjRoleStfngShadowRoleUUID = _TaskRoleAssignment.DevRoleTskAssgmtShadowRoleUUID
[0..*] A_DevProjResponsible_2 _ProjectResponsible $projection.ProjectUUID = _ProjectResponsible.ProjectUUID and $projection.ProjectRoleUUID = _ProjectResponsible.ProjectRoleUUID and $projection.DevProjRoleStfngShadowRoleUUID = _ProjectResponsible.DevProjRoleStfngShadowRoleUUID

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED 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 #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
OData.entityType.name DevProjRoleStaffing_Type view

Fields (14)

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

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_2.
-- 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_2 AS
SELECT
  ProjectUUID,
  ProjectRoleUUID,
  DevProjRoleStfngShadowRoleUUID,
  BusinessPartnerUUID,
  DevProjRoleStfngBeginDate,
  DevProjRoleStfngEndDate,
  PlannedWorkQuantity,
  PlannedWorkQuantityUnit,
  DevProjRoleStfngBookingType,
  PlannedStartDate,
  DevProjRoleStfngPlndFinishDate
FROM R_DevProjRoleStaffingTP_2
LEFT OUTER JOIN A_DevelopmentProjectRole AS _Role ON ProjectRoleUUID = _Role.ProjectRoleUUID  -- association [1..1]
LEFT OUTER JOIN A_DevRoleTaskAssignment_2 AS _TaskRoleAssignment ON ProjectRoleUUID = _TaskRoleAssignment.ProjectRoleUUID AND DevProjRoleStfngShadowRoleUUID = _TaskRoleAssignment.DevRoleTskAssgmtShadowRoleUUID  -- association [0..*]
LEFT OUTER JOIN A_DevProjResponsible_2 AS _ProjectResponsible ON ProjectUUID = _ProjectResponsible.ProjectUUID AND ProjectRoleUUID = _ProjectResponsible.ProjectRoleUUID AND DevProjRoleStfngShadowRoleUUID = _ProjectResponsible.DevProjRoleStfngShadowRoleUUID  -- association [0..*]
;