I_CnsldtnFinTransTypeHierNodeT

DDL: I_CNSLDTNFINTRANSTYPEHIERNODET Type: view BASIC Package: FIN_CS_MD_FINTRANSACTIONTYPE

Cnsldtn Fin Trans Type Hier Node - Txt

I_CnsldtnFinTransTypeHierNodeT (Basic)

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

CnsldtnFinTransTypeHierNdeText · Group Reporting

I_CnsldtnFinTransTypeHierNodeT is a Basic CDS View that provides data about "Cnsldtn Fin Trans Type Hier Node - Txt" in SAP S/4HANA. It reads from 1 data source (P_CnsldtnUnivHierNodeText_2) and exposes 10 fields with key fields Language, CnsldtnFinTransTypeHierarchy, HierarchyNode, ValidityEndDate. It has 1 association to related views. Part of development package FIN_CS_MD_FINTRANSACTIONTYPE.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessGroup Reporting
Application ComponentFIN-CS-MD-2CL
CapabilitiesData Source for Data Extraction,Data Source for Defining CDS Entities,Association Target for Defining CDS Entities,Data Source in SQL Select,Language-Dependent Text
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageGroup Reporting for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
P_CnsldtnUnivHierNodeText_2 P_CnsldtnUnivHierNodeText_2 from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_CnsldtnFinTransTypeHierarchy _Hierarchy $projection.CnsldtnFinTransTypeHierarchy = _Hierarchy.CnsldtnFinTransTypeHierarchy

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ICCFTTHNT 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 #M view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey HierarchyNode view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.sapObjectNodeType.name CnsldtnFinTransTypeHierNdeText view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Cnsldtn Fin Trans Type Hier Node - Txt view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY Language _Source Language Report Text Language
KEY CnsldtnFinTransTypeHierarchy Consolidation Transaction Type Hierarchy
KEY HierarchyNode _Source HierarchyNode Consolidation Hierarchy Node
KEY ValidityEndDate _Source ValidityEndDate Validity End Date
ValidityStartDate _Source ValidityStartDate Validity Start Date
ParentNode _Source ParentNode Consolidation Hierarchy Parent Node
HierarchyVersion _Source HierarchyVersion Consolidation Hierarchy Version
HierarchyNodeText _Source HierarchyNodeText Consolidation Hierarchy Node Description
_Language _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_CnsldtnFinTransTypeHierNodeT.
-- 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_CnsldtnFinTransTypeHierNodeT AS
SELECT
  _Source.Language AS Language,
  cast(_Source.CnsldtnUniversalHierarchy as fincs_fintransactiontypehier preserving type ) AS CnsldtnFinTransTypeHierarchy,
  _Source.HierarchyNode AS HierarchyNode,
  _Source.ValidityEndDate AS ValidityEndDate,
  _Source.ValidityStartDate AS ValidityStartDate,
  _Source.ParentNode AS ParentNode,
  _Source.HierarchyVersion AS HierarchyVersion,
  _Source.HierarchyNodeText AS HierarchyNodeText
FROM P_CnsldtnUnivHierNodeText_2
LEFT OUTER JOIN I_CnsldtnFinTransTypeHierarchy AS _Hierarchy ON CnsldtnFinTransTypeHierarchy = _Hierarchy.CnsldtnFinTransTypeHierarchy  -- association [1..*]
;