I_ProjectHierarchyRootData

DDL: I_PROJECTHIERARCHYROOTDATA Type: view_entity COMPOSITE

Project Hierarchy Root Data

I_ProjectHierarchyRootData is a Composite CDS View that provides data about "Project Hierarchy Root Data" in SAP S/4HANA. It reads from 3 data sources (I_ProjectBasicData, I_ProjectNetworkBasicData, I_WBSElementBasicData) and exposes 8 fields with key field ProjectObject.

Data Sources (3)

SourceAliasJoin Type
I_ProjectBasicData I_ProjectBasicData from
I_ProjectNetworkBasicData I_ProjectNetworkBasicData union_all
I_WBSElementBasicData I_WBSElementBasicData union_all

Annotations (7)

NameValueLevelField
EndUserText.label Project Hierarchy Root Data view
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
Metadata.ignorePropagatedAnnotations true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ProjectObject ProjectObject Object number
ProjectInternalID ProjectInternalID Project Def.
ControllingArea ControllingArea Controlling Area
ProjectInternalID WBSElementInternalID Project Def.
ControllingArea ControllingArea Controlling Area
ProjectInternalID ProjectInternalID Project Def.
ControllingArea ControllingArea Controlling Area
ProfitCenter ProfitCenter Profit Center

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_ProjectHierarchyRootData.
-- 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_ProjectHierarchyRootData AS
SELECT
  ProjectObject,
  ProjectInternalID,
  ControllingArea,
  ProfitCenter
FROM I_ProjectBasicData
-- UNION ALL with additional select branch(es): I_WBSElementBasicData, I_ProjectNetworkBasicData
;