Deprecated
This CDS view is deprecated in S/4HANA. Use I_GLAccountHierarchyText instead. View all deprecated CDS views →

I_FinancialStatementHierarchyT

DDL: I_FINANCIALSTATEMENTHIERARCHYT SQL: IFIFINSTATEHT Type: view BASIC

Financial Statement Hierarchy - Text

I_FinancialStatementHierarchyT (Basic)

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

Accounting and Financial Close

I_FinancialStatementHierarchyT is a Basic CDS View that provides data about "Financial Statement Hierarchy - Text" in SAP S/4HANA. It reads from 1 data source (hrrp_dirt_n) and exposes 6 fields with key fields GLAccountHierarchy, ValidityEndDate, Language. It has 1 association to related views.

SAP API Hub

StateDeprecated
Line of BusinessAccounting and Financial Close
Application ComponentFI-GL-IS
CapabilitiesData Source in SQL Select, Language-Dependent Text, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view retrieves the financial statement versions (FSVs) and general ledger (G/L) account hierarchies. It helps answer the following business questions:

Documentation

Data Sources (1)

SourceAliasJoin Type
hrrp_dirt_n hrrp_dirt_n from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (17)

NameValueLevelField
EndUserText.label Financial Statement Hierarchy - Text view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFIFINSTATEHT view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey GLAccountHierarchy view
AbapCatalog.buffering.status #NOT_ALLOWED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #CHECK view
Search.searchable true view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_GLAccountHierarchyText view
Analytics.dataExtraction.enabled true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY GLAccountHierarchy hrrp_dirt_n hryid_42 Hierarchy ID
KEY ValidityEndDate hrrp_dirt_n hryvalto Valid To Date
KEY Language spras Off. Language
ValidityStartDate hrrp_dirt_n hryvalfrom Valid-From Date
GLAccountHierarchyName hrytxt Hierarchy description
_Language _Language

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_FinancialStatementHierarchyT.
-- 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: IFIFINSTATEHT

CREATE VIEW I_FinancialStatementHierarchyT AS
SELECT
  hrrp_dirt_n.hryid_42 AS GLAccountHierarchy,
  hrrp_dirt_n.hryvalto AS ValidityEndDate,
  spras AS Language,
  hrrp_dirt_n.hryvalfrom AS ValidityStartDate,
  hrytxt AS GLAccountHierarchyName
FROM hrrp_dirt_n
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;