I_EntWBSElementHierarchy

DDL: I_ENTWBSELEMENTHIERARCHY Type: view_entity COMPOSITE Package: VDM_PPM_OBJECTS_TP_PROJECT

WBS Element Hierarchy

I_EntWBSElementHierarchy (Composite)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

EnterpriseProjectElement · R&D Engineering

I_EntWBSElementHierarchy is a Composite CDS View (Dimension) that provides data about "WBS Element Hierarchy" in SAP S/4HANA. It has 1 association to related views. Part of development package VDM_PPM_OBJECTS_TP_PROJECT.

SAP Help Documentation

CategoryCDS Views for Project Financials Control and Project Management
Data CategoryDimension
Purpose
This CDS view retrieves the header information of the WBS element hierarchy for enterprise projects and professional services projects . This CDS view provides the data to answer the following business questions: What is the name and validity of the WBS element hierarchy for enterprise projects and professional services projects? Note This CDS view has been released for technical reasons. SAP S/4HANA Cloud Public Edition only supports one predefined WBS element hierarchy with unrestricted validity for enterprise projects and professional services projects. The hierarchical work breakdown structures of all enterprise projects and professional services projects in your system can be retrieved as part of this dummy hierarchy using CDS view Node of WBS Element Hierarchy . To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users who want to use this CDS view don't need any special authorization.

Structure
Important Fields Important fields in this view include the following: Field Name Description WBSElementHierarchy ID of the WBS element hierarchy ValidityEndDate End of the validity period of the hierarchy ValidityStartDate Start of the validity period of the hierarchy

Data Extraction
Data Extraction Type This CDS view is enabled for data extraction in full mode.

Constraints
This CDS view can only be used to retrieve the WBS element hierarchy for enterprise projects with the project categories 6 ( Enterprise project ) or 7 ( Enterprise project – Professional Services ) in SAP S/4HANA Cloud Public Edition . It is not intended for use in SAP S/4HANA .

View on SAP Help Portal →

SAP API Hub

CategoryComposite
StateC1
Line of BusinessR&D Engineering
Application ComponentPPM-SCL-STR
CapabilitiesData Source for Data Extraction,Data Source for Defining CDS Entities,Analytical Dimension,Association Target for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Not Released
PackageR&D/Engineering for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view retrieves the header information of the WBS element hierarchy for enterprise projects and professional services projects.</p> <p>This CDS view provides the data to answer the following business questions:</p> <ul> <li> <p>What is the name and validity of the WBS element hierarchy for enterprise projects and professional services projects?</p> </li> </ul> <p>To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views.</p>

Documentation

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_FinWBSElementHierarchyText _Text $projection.WBSElementHierarchy = _Text.WBSElementHierarchy

Annotations (14)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label WBS Element Hierarchy view
Analytics.dataCategory #DIMENSION view
VDM.viewType #COMPOSITE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey WBSElementHierarchy view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
Metadata.allowExtensions true view
Analytics.internalName #LOCAL view
ObjectModel.sapObjectNodeType.name EnterpriseProjectElement view
Analytics.dataExtraction.enabled true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY WBSElementHierarchy WBS Element Hierarchy
ValidityEndDate Valid To Date
ValidityStartDate Valid-From Date
LastChangedByUser Last Changed By
_Text _Text

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_EntWBSElementHierarchy.
-- 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_EntWBSElementHierarchy AS
SELECT
  cast ('WBSELEMENTHIERARCHY ' as wbshierarchy preserving type) AS WBSElementHierarchy,
  cast ('99991231' as datbi) AS ValidityEndDate,
  cast ('19720101' as datab) AS ValidityStartDate,
  cast ('SAP ' as upnam) AS LastChangedByUser
LEFT OUTER JOIN I_FinWBSElementHierarchyText AS _Text ON WBSElementHierarchy = _Text.WBSElementHierarchy  -- association [0..*]
;