I_FinStmntHierStdVH

DDL: I_FINSTMNTHIERSTDVH SQL: IFIFSH__VH Type: view COMPOSITE

Financial Statement Hierarchy

I_FinStmntHierStdVH is a Composite CDS View that provides data about "Financial Statement Hierarchy" in SAP S/4HANA. It reads from 1 data source (I_FinancialStatementHierarchy) and exposes 4 fields with key fields GLAccountHierarchy, ValidityEndDate.

Data Sources (1)

SourceAliasJoin Type
I_FinancialStatementHierarchy I_FinancialStatementHierarchy from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IFIFSH__VH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey GLAccountHierarchy view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Financial Statement Hierarchy view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY GLAccountHierarchy GLAccountHierarchy Hierarchy ID
KEY ValidityEndDate ValidityEndDate ValidTo
_Text _Text
ValidityStartDate ValidityStartDate Validity Start Date

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_FinStmntHierStdVH.
-- 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: IFIFSH__VH

CREATE VIEW I_FinStmntHierStdVH AS
SELECT
  GLAccountHierarchy,
  ValidityEndDate,
  ValidityStartDate
FROM I_FinancialStatementHierarchy
;