I_ProjectStructureHierarchy

DDL: I_PROJECTSTRUCTUREHIERARCHY SQL: IPROJSTRUCHIER Type: view BASIC

Project Structure Hierarchy

I_ProjectStructureHierarchy is a Basic CDS View that provides data about "Project Structure Hierarchy" in SAP S/4HANA. It reads from 1 data source (proj_struc_hier) and exposes 4 fields with key field ProjectStructureHierarchy.

Data Sources (1)

SourceAliasJoin Type
proj_struc_hier proj_struc_hier from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IPROJSTRUCHIER view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey ProjectStructureHierarchy view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Project Structure Hierarchy view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ProjectStructureHierarchy hryid Hierarchy ID
LastChangedByUser upduser Changed By
LastChangeTime updtime Updated At
NotAssgdNdeHasBeenSuppressed

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_ProjectStructureHierarchy.
-- 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: IPROJSTRUCHIER

CREATE VIEW I_ProjectStructureHierarchy AS
SELECT
  hryid AS ProjectStructureHierarchy,
  upduser AS LastChangedByUser,
  updtime AS LastChangeTime,
  'X' AS NotAssgdNdeHasBeenSuppressed
FROM proj_struc_hier
;