R_HierRuntimeRprstnInnerNode

DDL: R_HIERRUNTIMERPRSTNINNERNODE Type: view_entity BASIC Package: FINS_FI_HIERARCHY_VH

Hierarchy Inner Node

R_HierRuntimeRprstnInnerNode is a Basic CDS View that provides data about "Hierarchy Inner Node" in SAP S/4HANA. It reads from 1 data source (R_HierRuntimeRprstnNode) and exposes 13 fields with key fields UniversalHierarchy, HierarchyVersion, ValidityEndDate, HierarchyNode, HierarchyNodeClass. Part of development package FINS_FI_HIERARCHY_VH.

Data Sources (1)

SourceAliasJoin Type
R_HierRuntimeRprstnNode R_HierRuntimeRprstnNode from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Hierarchy Inner Node view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY UniversalHierarchy HierarchyID Hierarchy ID
KEY HierarchyVersion HierarchyVersion Version
KEY ValidityEndDate ValidityEndDate ValidTo
KEY HierarchyNode HierarchyNode Node
KEY HierarchyNodeClass HierarchyNodeClass Node Class
KEY HierarchyParentNode ParentNode Parent Node
ValidityStartDate ValidityStartDate Validity Start Date
NodeType NodeType Object Type
HierarchyNodeVal HierarchyNodeVal Value
HierarchyNodeLevel HierarchyNodeLevel Hierarchy Node Level
HierarchyType HierarchyType Hierarchy Type
_Text _Text
_Hierarchy _Hierarchy

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 R_HierRuntimeRprstnInnerNode.
-- 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 R_HierRuntimeRprstnInnerNode AS
SELECT
  HierarchyID AS UniversalHierarchy,
  HierarchyVersion,
  ValidityEndDate,
  HierarchyNode,
  HierarchyNodeClass,
  ParentNode AS HierarchyParentNode,
  ValidityStartDate,
  NodeType,
  HierarchyNodeVal,
  HierarchyNodeLevel,
  HierarchyType
FROM R_HierRuntimeRprstnNode
;