I_CurCostCtrHierarchyNode

DDL: I_CURCOSTCTRHIERARCHYNODE Type: view_entity COMPOSITE Package: FINS_FIS_FICO

Current Cost Center - Hierarchy Node

I_CurCostCtrHierarchyNode is a Composite CDS View that provides data about "Current Cost Center - Hierarchy Node" in SAP S/4HANA. It reads from 1 data source (I_CostCenterHierarchyNode) and exposes 15 fields with key fields HierarchyNode, CostCenterHierarchy. It has 1 association to related views. Part of development package FINS_FIS_FICO.

Data Sources (1)

SourceAliasJoin Type
I_CostCenterHierarchyNode I_CostCenterHierarchyNode from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CostCenterHierarchyNodeT _Text $projection.CostCenterHierarchy = _Text.CostCenterHierarchy and $projection.HierarchyNode = _Text.HierarchyNode and $projection.ValidityEndDate = _Text.ValidityEndDate

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Current Cost Center - Hierarchy Node view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #COMPOSITE view
AccessControl.personalData.blocking #NOT_REQUIRED view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY HierarchyNode HierarchyNode Node
KEY CostCenterHierarchy CostCenterHierarchy
ValidityEndDate ValidityEndDate ValidTo
ControllingArea ControllingArea Controlling Area
ValidityStartDate ValidityStartDate Validity Start Date
ParentNode ParentNode Parent Node
CostCenter CostCenter Cost Center
HierarchyNodeSequence HierarchyNodeSequence Sequence Number
HierarchyNodeLevel HierarchyNodeLevel Hierarchy Node Level
NodeType NodeType Object Type
HierarchyNodeVal HierarchyNodeVal Value
_ParentNode _ParentNode
_Hierarchy _Hierarchy
_Text _Text
_ControllingArea _ControllingArea

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_CurCostCtrHierarchyNode.
-- 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 I_CurCostCtrHierarchyNode AS
SELECT
  HierarchyNode,
  CostCenterHierarchy,
  ValidityEndDate,
  ControllingArea,
  ValidityStartDate,
  ParentNode,
  CostCenter,
  HierarchyNodeSequence,
  HierarchyNodeLevel,
  NodeType,
  HierarchyNodeVal
FROM I_CostCenterHierarchyNode
LEFT OUTER JOIN I_CostCenterHierarchyNodeT AS _Text ON CostCenterHierarchy = _Text.CostCenterHierarchy AND HierarchyNode = _Text.HierarchyNode AND ValidityEndDate = _Text.ValidityEndDate  -- association [0..*]
;