C_ProjDmndRsceAssignmentSum

DDL: C_PROJDMNDRSCEASSIGNMENTSUM SQL: CPROJDMNDRASUM Type: view CONSUMPTION

Sum of the Staffed Efforts

C_ProjDmndRsceAssignmentSum is a Consumption CDS View that provides data about "Sum of the Staffed Efforts" in SAP S/4HANA. It reads from 2 data sources (R_ProjectDemand, R_ProjDmndResourceAssignment) and exposes 3 fields with key field ProjectDemandUUID.

Data Sources (2)

SourceAliasJoin Type
R_ProjectDemand Demand inner
R_ProjDmndResourceAssignment ResourceAssignment from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CPROJDMNDRASUM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #XL view
EndUserText.label Sum of the Staffed Efforts view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ProjectDemandUUID R_ProjDmndResourceAssignment ProjectDemandUUID Entity GUID
ProjDmndRsceAssgmtSumQty Assigned Effort
_Root R_ProjDmndResourceAssignment _Root

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 C_ProjDmndRsceAssignmentSum.
-- 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.
-- SQL view name: CPROJDMNDRASUM

CREATE VIEW C_ProjDmndRsceAssignmentSum AS
SELECT
  ResourceAssignment.ProjectDemandUUID AS ProjectDemandUUID,
  cast (sum(ResourceAssignment.ProjDmndRsceAssgmtQuantity) as tv_proj_dmnd_effort) AS ProjDmndRsceAssgmtSumQty,
  ResourceAssignment._Root AS _Root
FROM R_ProjDmndResourceAssignment AS ResourceAssignment
INNER JOIN R_ProjectDemand AS Demand ON /* join condition not captured in parsed metadata */
;