A_DevProjRoleStaffing
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)
| Source | Alias | Join Type |
|---|---|---|
| R_DevProjRoleStaffingTP | R_DevProjRoleStaffingTP | projection |
Associations (5)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [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)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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..*]
;
Learn More
- S/4HANA CDS View Deprecation: What You Need to Know
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- 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
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA