I_CnsldtnFinTransTypeHierNode

DDL: I_CNSLDTNFINTRANSTYPEHIERNODE Type: view BASIC

Cnsldtn Fin Transaction Type - Hier Node

I_CnsldtnFinTransTypeHierNode (Basic)

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

CnsldtnFinTransTypeHierNode · Group Reporting

I_CnsldtnFinTransTypeHierNode is a Basic CDS View that provides data about "Cnsldtn Fin Transaction Type - Hier Node" in SAP S/4HANA. It reads from 1 data source (P_CnsldtnUnivHierNode_2) and exposes 13 fields with key fields CnsldtnFinTransTypeHierarchy, HierarchyNode, ValidityEndDate. It has 3 associations to related views.

SAP API Hub

StateC1
Line of BusinessGroup Reporting
Application ComponentFIN-CS-MD
CapabilitiesData Source for Defining CDS Entities, Association Target for Defining CDS Entities, Data Source in SQL Select, Data Source for Data Extraction, Data Source for Hierarchies in Analytics
PackageGroup Reporting for SAP S/4HANA Cloud Private Edition
Description <p>These CDS views provide access to the hierarchy of the consolidation financial transaction type and its nodes.  </p> <p>This CDS view provides the data to answer the following business questions: </p> <ul> <li><p>What hierarchies of financial transaction types exist and what is their validity interval? The interval is given in terms of year, month, and day. </p></li> <li><p>Which financial transaction types are contained in a hierarchy? </p></li> <li><p>What are the nodes of a hierarchy and what are their descriptions? </p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
P_CnsldtnUnivHierNode_2 P_CnsldtnUnivHierNode_2 from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_CnsldtnFinTransType _FinTransType $projection.FinancialTransactionType = _FinTransType.FinancialTransactionType
[1..1] I_CnsldtnFinTransTypeHierarchy _Hierarchy $projection.CnsldtnFinTransTypeHierarchy = _Hierarchy.CnsldtnFinTransTypeHierarchy and $projection.ValidityEndDate = _Hierarchy.ValidityEndDate
[0..*] I_CnsldtnFinTransTypeHierNodeT _Text $projection.CnsldtnFinTransTypeHierarchy = _Text.CnsldtnFinTransTypeHierarchy and $projection.HierarchyNode = _Text.HierarchyNode and $projection.FinancialTransactionType = ''

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ICCFTTHN view
AbapCatalog.compiler.compareFilter true view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #MANDATORY view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #HIERARCHY view
ObjectModel.representativeKey HierarchyNode view
ObjectModel.modelingPattern #ANALYTICAL_PARENT_CHILD_HIERARCHY_NODE view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Cnsldtn Fin Transaction Type - Hier Node view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY CnsldtnFinTransTypeHierarchy Consolidation Transaction Type Hierarchy
KEY HierarchyNode _HierarchyNode HierarchyNode Consolidation Hierarchy Node
KEY ValidityEndDate _HierarchyNode ValidityEndDate Validity End Date
ValidityStartDate _HierarchyNode ValidityStartDate Validity Start Date
ParentNode _HierarchyNode ParentNode Consolidation Hierarchy Parent Node
HierarchyVersion _HierarchyNode HierarchyVersion Consolidation Hierarchy Version
FinancialTransactionType Financial Transaction Type
HierarchyNodeSequence _HierarchyNode HierarchyNodeSequence Consolidation Hierarchy Sequence Number
HierarchyNodeLevel _HierarchyNode HierarchyNodeLevel Consolidation Hierarchy Level
NodeType _HierarchyNode NodeType Consolidation Hierarchy Node Type
_Text _Text
_FinTransType _FinTransType
_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_CnsldtnFinTransTypeHierNode.
-- 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_CnsldtnFinTransTypeHierNode AS
SELECT
  cast(_HierarchyNode.CnsldtnUniversalHierarchy as fincs_fintransactiontypehier preserving type ) AS CnsldtnFinTransTypeHierarchy,
  _HierarchyNode.HierarchyNode AS HierarchyNode,
  _HierarchyNode.ValidityEndDate AS ValidityEndDate,
  _HierarchyNode.ValidityStartDate AS ValidityStartDate,
  _HierarchyNode.ParentNode AS ParentNode,
  _HierarchyNode.HierarchyVersion AS HierarchyVersion,
  cast(left( _HierarchyNode.UniversalHierarchyLeafValue, 3 ) as fincs_financialtransactiontype preserving type ) AS FinancialTransactionType,
  _HierarchyNode.HierarchyNodeSequence AS HierarchyNodeSequence,
  _HierarchyNode.HierarchyNodeLevel AS HierarchyNodeLevel,
  _HierarchyNode.NodeType AS NodeType
FROM P_CnsldtnUnivHierNode_2
LEFT OUTER JOIN I_CnsldtnFinTransType AS _FinTransType ON FinancialTransactionType = _FinTransType.FinancialTransactionType  -- association [0..1]
LEFT OUTER JOIN I_CnsldtnFinTransTypeHierarchy AS _Hierarchy ON CnsldtnFinTransTypeHierarchy = _Hierarchy.CnsldtnFinTransTypeHierarchy AND ValidityEndDate = _Hierarchy.ValidityEndDate  -- association [1..1]
LEFT OUTER JOIN I_CnsldtnFinTransTypeHierNodeT AS _Text ON CnsldtnFinTransTypeHierarchy = _Text.CnsldtnFinTransTypeHierarchy AND HierarchyNode = _Text.HierarchyNode AND FinancialTransactionType = ''  -- association [0..*]
;