I_FinancialStatementHierT

DDL: I_FINANCIALSTATEMENTHIERT SQL: IFISTMTHERT Type: view BASIC

Financial Statement Hierarchy - Text

I_FinancialStatementHierT (Basic)

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

FinancialStatementHierText · Accounting and Financial Close

I_FinancialStatementHierT 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 7 fields with key fields FinancialStatementHierarchy, ValidityEndDate, Language. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-FIO-GL-IS
CapabilitiesData Source for Defining CDS Entities, Association Target for Defining CDS Entities, Language-Dependent Text, Data Source for Data Extraction
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
hrrp_dirt_n hrrp_dirt_n from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_FinancialStatementHier _Hierarchy $projection.FinancialStatementHierarchy = _Hierarchy.FinancialStatementHierarchy and $projection.ValidityEndDate = _Hierarchy.ValidityEndDate

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IFISTMTHERT view
AbapCatalog.buffering.status #NOT_ALLOWED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Financial Statement Hierarchy - Text view
VDM.viewType #BASIC view
ObjectModel.representativeKey FinancialStatementHierarchy view
ObjectModel.dataCategory #TEXT view
Consumption.filter.businessDate.at true view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Analytics.dataExtraction.enabled true view
ObjectModel.sapObjectNodeType.name FinancialStatementHierText view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY FinancialStatementHierarchy hrrp_dirt_n hryid_42 Hierarchy ID
KEY ValidityEndDate hryvalto Valid To Date
KEY Language spras Off. Language
ValidityStartDate hryvalfrom Valid-From Date
FinancialStmntHierarchyName hrytxt Financial Statement 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_FinancialStatementHierT.
-- 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: IFISTMTHERT

CREATE VIEW I_FinancialStatementHierT AS
SELECT
  hrrp_dirt_n.hryid_42 AS FinancialStatementHierarchy,
  hryvalto AS ValidityEndDate,
  spras AS Language,
  hryvalfrom AS ValidityStartDate,
  hrytxt AS FinancialStmntHierarchyName
FROM hrrp_dirt_n
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_FinancialStatementHier AS _Hierarchy ON FinancialStatementHierarchy = _Hierarchy.FinancialStatementHierarchy AND ValidityEndDate = _Hierarchy.ValidityEndDate  -- association [0..1]
;