P_CNSLDTNTNHNODE

DDL: P_CNSLDTNTNHNODE Type: view_entity COMPOSITE

P_CNSLDTNTNHNODE is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_HierRuntimeRprstnNode) and exposes 12 fields with key fields AdditionalMasterDataHierarchy, HierarchyNodeClass, HierarchyNode, HierarchyParentNode.

Data Sources (1)

SourceAliasJoin Type
I_HierRuntimeRprstnNode I_HierRuntimeRprstnNode from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #MIXED view
VDM.private true view
ObjectModel.usageType.sizeCategory #XL view
AccessControl.personalData.blocking #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY AdditionalMasterDataHierarchy Hierarchy ID
KEY HierarchyNodeClass HierarchyNodeClass Node Class
KEY HierarchyNode HierarchyNode Node
KEY HierarchyParentNode ParentNode Parent Node
ValidityEndDate ValidityEndDate ValidTo
ValidityStartDate ValidityStartDate Validity Start Date
HierarchyNodeType NodeType Object Type
HierarchyNodeVal HierarchyNodeVal Value
HierarchyNodeSequence HierarchyNodeSequence Sequence Number
HierarchyNodeLevel HierarchyNodeLevel Hierarchy Node Level
HierarchyType HierarchyType Hierarchy Type
node_timedep HierarchyNodeIsTimeDependent

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 P_CNSLDTNTNHNODE.
-- 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 P_CNSLDTNTNHNODE AS
SELECT
  cast(RuntimeHierarchy as fincs_hryid) AS AdditionalMasterDataHierarchy,
  HierarchyNodeClass,
  HierarchyNode,
  ParentNode AS HierarchyParentNode,
  ValidityEndDate,
  ValidityStartDate,
  NodeType AS HierarchyNodeType,
  HierarchyNodeVal,
  HierarchyNodeSequence,
  HierarchyNodeLevel,
  HierarchyType,
  HierarchyNodeIsTimeDependent AS node_timedep
FROM I_HierRuntimeRprstnNode
;