I_FundsCenter2HierarchyNode
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)
| Source | Alias | Join Type |
|---|---|---|
| hrrp_node_n | hrrp_node_n | from |
Associations (5)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [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)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA