I_CostCenterHierarchyNodeVH

DDL: I_COSTCENTERHIERARCHYNODEVH SQL: IFICOSTCTRHNVH Type: view BASIC Package: FINS_FIS_FICO

Cost Center Hierarchy Node Value Help

I_CostCenterHierarchyNodeVH is a Basic CDS View (Dimension) that provides data about "Cost Center Hierarchy Node Value Help" in SAP S/4HANA. It reads from 1 data source (I_CostCenterHierarchyNode) and exposes 8 fields with key fields ControllingArea, CostCenterHierarchy, HierarchyNode, ValidityEndDate. 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.ControllingArea = _Text.ControllingArea and $projection.ValidityEndDate = _Text.ValidityEndDate

Annotations (14)

NameValueLevelField
ObjectModel.representativeKey HierarchyNode view
EndUserText.label Cost Center Hierarchy Node Value Help view
Analytics.dataCategory #DIMENSION view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFICOSTCTRHNVH view
AccessControl.authorizationCheck #CHECK view
Metadata.allowExtensions true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
AbapCatalog.preserveKey true view
Consumption.filter.businessDate.at true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea I_CostCenterHierarchyNode ControllingArea Controlling Area
KEY CostCenterHierarchy I_CostCenterHierarchyNode CostCenterHierarchy
KEY HierarchyNode I_CostCenterHierarchyNode HierarchyNode Node
KEY ValidityEndDate I_CostCenterHierarchyNode ValidityEndDate ValidTo
ValidityStartDate I_CostCenterHierarchyNode ValidityStartDate Validity Start Date
_ControllingArea I_CostCenterHierarchyNode _ControllingArea
_Hierarchy I_CostCenterHierarchyNode _Hierarchy
_Text _Text

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_CostCenterHierarchyNodeVH.
-- 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: IFICOSTCTRHNVH

CREATE VIEW I_CostCenterHierarchyNodeVH AS
SELECT
  I_CostCenterHierarchyNode.ControllingArea AS ControllingArea,
  I_CostCenterHierarchyNode.CostCenterHierarchy AS CostCenterHierarchy,
  I_CostCenterHierarchyNode.HierarchyNode AS HierarchyNode,
  I_CostCenterHierarchyNode.ValidityEndDate AS ValidityEndDate,
  I_CostCenterHierarchyNode.ValidityStartDate AS ValidityStartDate,
  I_CostCenterHierarchyNode._ControllingArea AS _ControllingArea,
  I_CostCenterHierarchyNode._Hierarchy AS _Hierarchy
FROM I_CostCenterHierarchyNode
LEFT OUTER JOIN I_CostCenterHierarchyNodeT AS _Text ON CostCenterHierarchy = _Text.CostCenterHierarchy AND HierarchyNode = _Text.HierarchyNode AND ControllingArea = _Text.ControllingArea AND ValidityEndDate = _Text.ValidityEndDate  -- association [0..*]
;