I_StstclKeyFigureHierNodeT

DDL: I_STSTCLKEYFIGUREHIERNODET SQL: IFISTCLKEYFIGHNT Type: view BASIC Package: FINS_FIS_FICO

Statistical Key Figure Hier Node - Text

I_StstclKeyFigureHierNodeT (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Public Edition with built-in and side-by-side extension capabilities.

StstclKeyFigureHierNodeText · Accounting and Financial Close

I_StstclKeyFigureHierNodeT is a Basic CDS View that provides data about "Statistical Key Figure Hier Node - Text" in SAP S/4HANA. It reads from 1 data source (hrrp_nodet_n) and exposes 12 fields with key fields ControllingArea, StatisticalKeyFigureHierarchy, HierarchyNode, ValidityEndDate, Language. It has 4 associations to related views. Part of development package FINS_FIS_FICO.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessAccounting and Financial Close
Application ComponentCO-OM-2CL
CapabilitiesData Source for Data Extraction,Data Source for Defining CDS Entities,Association Target for Defining CDS Entities,Language-Dependent Text
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageAccounting and Financial Close for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
hrrp_nodet_n hrrp_nodet_n from

Associations (4)

CardinalityTargetAliasCondition
[0..1] I_ControllingArea _ControllingAreaText $projection.ControllingArea = _ControllingAreaText.ControllingArea
[0..1] I_ControllingArea _ControllingArea $projection.ControllingArea = _ControllingArea.ControllingArea
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..*] I_StstclKeyFigureHierarchy _Hierarchy $projection.StatisticalKeyFigureHierarchy = _Hierarchy.StatisticalKeyFigureHierarchy and $projection.ControllingArea = _Hierarchy.ControllingArea

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IFISTCLKEYFIGHNT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Statistical Key Figure Hier Node - Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey HierarchyNode view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
Analytics.dataExtraction.enabled true view
ObjectModel.sapObjectNodeType.name StstclKeyFigureHierNodeText view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea Controlling Area
KEY StatisticalKeyFigureHierarchy hrrp_nodet_n hryid_42 Hierarchy ID
KEY HierarchyNode hrrp_nodet_n hrynode Hierarchy node
KEY ValidityEndDate hrrp_nodet_n hryvalto Valid To Date
KEY Language hrrp_nodet_n spras Off. Language
HierarchyNodeText hrrp_nodet_n nodetxt Hierarchy node description
HierarchyNodeShortText
ValidityStartDate hrrp_nodet_n hryvalfrom Valid-From Date
_ControllingArea _ControllingArea
_Language _Language
_Hierarchy _Hierarchy
_ControllingAreaText _ControllingAreaText

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_StstclKeyFigureHierNodeT.
-- 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: IFISTCLKEYFIGHNT

CREATE VIEW I_StstclKeyFigureHierNodeT AS
SELECT
  cast( hrrp_nodet_n.kokrs as fis_kokrs preserving type ) AS ControllingArea,
  hrrp_nodet_n.hryid_42 AS StatisticalKeyFigureHierarchy,
  hrrp_nodet_n.hrynode AS HierarchyNode,
  hrrp_nodet_n.hryvalto AS ValidityEndDate,
  hrrp_nodet_n.spras AS Language,
  hrrp_nodet_n.nodetxt AS HierarchyNodeText,
  substring(hrrp_nodet_n.nodetxt, 1, 20) AS HierarchyNodeShortText,
  hrrp_nodet_n.hryvalfrom AS ValidityStartDate
FROM hrrp_nodet_n
LEFT OUTER JOIN I_ControllingArea AS _ControllingAreaText ON ControllingArea = _ControllingAreaText.ControllingArea  -- association [0..1]
LEFT OUTER JOIN I_ControllingArea AS _ControllingArea ON ControllingArea = _ControllingArea.ControllingArea  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_StstclKeyFigureHierarchy AS _Hierarchy ON StatisticalKeyFigureHierarchy = _Hierarchy.StatisticalKeyFigureHierarchy AND ControllingArea = _Hierarchy.ControllingArea  -- association [1..*]
;