I_CnsldtnDivisionHierNodeT

DDL: I_CNSLDTNDIVISIONHIERNODET Type: view_entity BASIC

Cnsldtn Division Hierarchy Node - Text

I_CnsldtnDivisionHierNodeT (Basic)

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

CnsldtnDivisionHierNodeText · Group Reporting

I_CnsldtnDivisionHierNodeT is a Basic CDS View that provides data about "Cnsldtn Division Hierarchy Node - Text" in SAP S/4HANA. It reads from 1 data source (P_CnsldtnUnivHierNodeText_3) and exposes 10 fields with key fields Language, CnsldtnDivisionHierarchy, HierarchyNode, ValidityEndDate. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessGroup Reporting
Application ComponentFIN-CS-MD
CapabilitiesData Source for Defining CDS Entities, Data Source in SQL Select, Association Target for Defining CDS Entities, Language-Dependent Text, Data Source for Data Extraction
PackageGroup Reporting for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
P_CnsldtnUnivHierNodeText_3 P_CnsldtnUnivHierNodeText_3 from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_CnsldtnDivisionHierarchy _Hierarchy $projection.CnsldtnDivisionHierarchy = _Hierarchy.CnsldtnDivisionHierarchy

Annotations (13)

NameValueLevelField
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #MANDATORY view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey HierarchyNode view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.sapObjectNodeType.name CnsldtnDivisionHierNodeText view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Cnsldtn Division Hierarchy Node - Text view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY Language _HierarchyNodeText Language Report Text Language
KEY CnsldtnDivisionHierarchy Division Hierarchy
KEY HierarchyNode _HierarchyNodeText HierarchyNode Consolidation Hierarchy Node
KEY ValidityEndDate _HierarchyNodeText ValidityEndDate Validity End Date
ValidityStartDate _HierarchyNodeText ValidityStartDate Validity Start Date
ParentNode _HierarchyNodeText ParentNode Consolidation Hierarchy Parent Node
HierarchyVersion _HierarchyNodeText HierarchyVersion Consolidation Hierarchy Version
HierarchyNodeText _HierarchyNodeText HierarchyNodeText Consolidation Hierarchy Node Description
_Language _HierarchyNodeText _Language
_Hierarchy _Hierarchy

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_CnsldtnDivisionHierNodeT.
-- 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_CnsldtnDivisionHierNodeT AS
SELECT
  _HierarchyNodeText.Language AS Language,
  cast(_HierarchyNodeText.UniversalHierarchy as fincs_divisionhierarchy preserving type ) AS CnsldtnDivisionHierarchy,
  _HierarchyNodeText.HierarchyNode AS HierarchyNode,
  _HierarchyNodeText.ValidityEndDate AS ValidityEndDate,
  _HierarchyNodeText.ValidityStartDate AS ValidityStartDate,
  _HierarchyNodeText.ParentNode AS ParentNode,
  _HierarchyNodeText.HierarchyVersion AS HierarchyVersion,
  _HierarchyNodeText.HierarchyNodeText AS HierarchyNodeText,
  _HierarchyNodeText._Language AS _Language
FROM P_CnsldtnUnivHierNodeText_3
LEFT OUTER JOIN I_CnsldtnDivisionHierarchy AS _Hierarchy ON CnsldtnDivisionHierarchy = _Hierarchy.CnsldtnDivisionHierarchy  -- association [1..1]
;