I_CnsldtnFinTransTypeHierText

DDL: I_CNSLDTNFINTRANSTYPEHIERTEXT Type: view BASIC

Cnsldtn Fin Trans Type Hierarchy - Txt

I_CnsldtnFinTransTypeHierText (Basic)

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

CnsldtnFinTransTypeHierText · Group Reporting

I_CnsldtnFinTransTypeHierText is a Basic CDS View that provides data about "Cnsldtn Fin Trans Type Hierarchy - Txt" in SAP S/4HANA. It reads from 1 data source (P_CnsldtnUnivHierarchyText_2) and exposes 7 fields with key fields Language, CnsldtnFinTransTypeHierarchy, 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, Association Target for Defining CDS Entities, Language-Dependent Text, Data Source for Data Extraction, Data Source in SQL Select
PackageGroup Reporting for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
P_CnsldtnUnivHierarchyText_2 P_CnsldtnUnivHierarchyText_2 from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_CnsldtnFinTransTypeHierarchy _Hierarchy $projection.CnsldtnFinTransTypeHierarchy = _Hierarchy.CnsldtnFinTransTypeHierarchy and $projection.ValidityEndDate = _Hierarchy.ValidityEndDate

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ICCFTTHIERTEXT 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.representativeKey CnsldtnFinTransTypeHierarchy view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.sapObjectNodeType.name CnsldtnFinTransTypeHierText view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Cnsldtn Fin Trans Type Hierarchy - Txt view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Language _HierarchyText Language Report Text Language
KEY CnsldtnFinTransTypeHierarchy Consolidation Transaction Type Hierarchy
KEY ValidityEndDate _HierarchyText ValidityEndDate Validity End Date
ValidityStartDate _HierarchyText ValidityStartDate Validity Start Date
CnsldtnFinTransTypeHierText _HierarchyText UniversalHierarchyText Consolidation Hierarchy 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_CnsldtnFinTransTypeHierText.
-- 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_CnsldtnFinTransTypeHierText AS
SELECT
  _HierarchyText.Language AS Language,
  cast(_HierarchyText.CnsldtnUniversalHierarchy as fincs_fintransactiontypehier preserving type ) AS CnsldtnFinTransTypeHierarchy,
  _HierarchyText.ValidityEndDate AS ValidityEndDate,
  _HierarchyText.ValidityStartDate AS ValidityStartDate,
  _HierarchyText.UniversalHierarchyText AS CnsldtnFinTransTypeHierText
FROM P_CnsldtnUnivHierarchyText_2
LEFT OUTER JOIN I_CnsldtnFinTransTypeHierarchy AS _Hierarchy ON CnsldtnFinTransTypeHierarchy = _Hierarchy.CnsldtnFinTransTypeHierarchy AND ValidityEndDate = _Hierarchy.ValidityEndDate  -- association [1..1]
;