I_FundsCenter2HierarchyNode

DDL: I_FUNDSCENTER2HIERARCHYNODE SQL: IFUNDSCENTERHN Type: view_entity BASIC

Funds Center Hierarchy Node

I_FundsCenter2HierarchyNode is a Basic CDS View that provides data about "Funds Center Hierarchy Node" in SAP S/4HANA. It reads from 1 data source (hrrp_node_n) and exposes 16 fields with key fields FinancialManagementArea, FundsCenterHierarchy, HierarchyNode, ValidityEndDate. It has 5 associations to related views.

Data Sources (1)

SourceAliasJoin Type
hrrp_node_n hrrp_node_n from

Associations (5)

CardinalityTargetAliasCondition
[1..*] I_FinancialManagementAreaText _FinancialManagementAreaText $projection.FinancialManagementArea = _FinancialManagementAreaText.FinancialManagementArea
[0..*] I_FundsCenterHierarchyNodeT _Text $projection.FundsCenterHierarchy = _Text.FundsCenterHierarchy and $projection.HierarchyNode = _Text.HierarchyNode and $projection.FinancialManagementArea = _Text.FinancialManagementArea and $projection.FundsCenter = ''
[0..1] I_FundsCenterNoValidToDate _FundsCenter $projection.FundsCenter = _FundsCenter.FundsCenter and $projection.FinancialManagementArea = _FundsCenter.FinancialManagementArea
[1..1] I_FundsCenterHierarchy _Hierarchy $projection.FundsCenterHierarchy = _Hierarchy.FundsCenterHierarchy and $projection.FinancialManagementArea = _Hierarchy.FinancialManagementArea and $projection.ValidityEndDate = _Hierarchy.ValidityEndDate
[1..1] I_FinancialManagementArea _FinMgmtArea $projection.FinancialManagementArea = _FinMgmtArea.FinancialManagementArea

Annotations (11)

NameValueLevelField
EndUserText.label Funds Center Hierarchy Node view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.dataCategory #HIERARCHY view
Metadata.ignorePropagatedAnnotations true view
Analytics.dataExtraction.enabled true view
ObjectModel.modelingPattern #ANALYTICAL_PARENT_CHILD_HIERARCHY_NODE view
ObjectModel.sapObjectNodeType.name FundsCenter view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY FinancialManagementArea
KEY FundsCenterHierarchy
KEY HierarchyNode hrrp_node_n hrynode Node
KEY ValidityEndDate
ParentNode hrrp_node_n parnode Par. Node
HierarchyVersion
ValidityStartDate
FundsCenter hrrp_node_n fictr Funds Center
HierarchyNodeSequence hrrp_node_n hryseqnbr Sequence Number
HierarchyNodeLevel hrrp_node_n hrylevel Hierarchy Level
NodeType hrrp_node_n nodetype Object Type
_Text _Text
_FundsCenter _FundsCenter
_Hierarchy _Hierarchy
_FinMgmtArea _FinMgmtArea
_FinancialManagementAreaText _FinancialManagementAreaText

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_FundsCenter2HierarchyNode.
-- 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: IFUNDSCENTERHN

CREATE VIEW I_FundsCenter2HierarchyNode AS
SELECT
  cast(hrrp_node_n.fikrs as fikrs ) AS FinancialManagementArea,
  cast(hrrp_node_n.hryid_42 as fmis_hryid_fundscenter ) AS FundsCenterHierarchy,
  hrrp_node_n.hrynode AS HierarchyNode,
  cast(hrrp_node_n.hryvalto as fmis_fc_validityenddate preserving type ) AS ValidityEndDate,
  hrrp_node_n.parnode AS ParentNode,
  cast( '000000000000001' as hryversn ) AS HierarchyVersion,
  cast(hrrp_node_n.hryvalfrom as fmis_fc_validitystartdate preserving type) AS ValidityStartDate,
  hrrp_node_n.fictr AS FundsCenter,
  hrrp_node_n.hryseqnbr AS HierarchyNodeSequence,
  hrrp_node_n.hrylevel AS HierarchyNodeLevel,
  hrrp_node_n.nodetype AS NodeType
FROM hrrp_node_n
LEFT OUTER JOIN I_FinancialManagementAreaText AS _FinancialManagementAreaText ON FinancialManagementArea = _FinancialManagementAreaText.FinancialManagementArea  -- association [1..*]
LEFT OUTER JOIN I_FundsCenterHierarchyNodeT AS _Text ON FundsCenterHierarchy = _Text.FundsCenterHierarchy AND HierarchyNode = _Text.HierarchyNode AND FinancialManagementArea = _Text.FinancialManagementArea AND FundsCenter = ''  -- association [0..*]
LEFT OUTER JOIN I_FundsCenterNoValidToDate AS _FundsCenter ON FundsCenter = _FundsCenter.FundsCenter AND FinancialManagementArea = _FundsCenter.FinancialManagementArea  -- association [0..1]
LEFT OUTER JOIN I_FundsCenterHierarchy AS _Hierarchy ON FundsCenterHierarchy = _Hierarchy.FundsCenterHierarchy AND FinancialManagementArea = _Hierarchy.FinancialManagementArea AND ValidityEndDate = _Hierarchy.ValidityEndDate  -- association [1..1]
LEFT OUTER JOIN I_FinancialManagementArea AS _FinMgmtArea ON FinancialManagementArea = _FinMgmtArea.FinancialManagementArea  -- association [1..1]
;