I_ProjectToWBSElementCount

DDL: I_PROJECTTOWBSELEMENTCOUNT SQL: IPROWBSCNT Type: view COMPOSITE

Number of WBS Elements per Project

I_ProjectToWBSElementCount is a Composite CDS View that provides data about "Number of WBS Elements per Project" in SAP S/4HANA. It reads from 1 data source (I_WBSElementBasicData) and exposes 2 fields with key field ProjectInternalID.

Data Sources (1)

SourceAliasJoin Type
I_WBSElementBasicData wbs from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IPROWBSCNT view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Number of WBS Elements per Project view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ProjectInternalID I_WBSElementBasicData ProjectInternalID Project Def.
NumberOfWBSElements

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_ProjectToWBSElementCount.
-- 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: IPROWBSCNT

CREATE VIEW I_ProjectToWBSElementCount AS
SELECT
  wbs.ProjectInternalID AS ProjectInternalID,
  cast( count (*) as int2 ) AS NumberOfWBSElements
FROM I_WBSElementBasicData AS wbs
;