I_PostingPeriodHierarchyText

DDL: I_POSTINGPERIODHIERARCHYTEXT SQL: IPOPERHIERTXT Type: view BASIC

Text of Posting Period Hierarchy

I_PostingPeriodHierarchyText is a Basic CDS View that provides data about "Text of Posting Period Hierarchy" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field PostingPeriodHierarchy.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IPOPERHIERTXT view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
EndUserText.label Text of Posting Period Hierarchy view
ObjectModel.representativeKey PostingPeriodHierarchy view
VDM.viewType #BASIC view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PostingPeriodHierarchy
PostingPeriodHierarchyText Short text

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_PostingPeriodHierarchyText.
-- 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: IPOPERHIERTXT

CREATE VIEW I_PostingPeriodHierarchyText AS
SELECT
  cast(substring( domvalue_l, 1, 2) as postingperiodhierarchy) AS PostingPeriodHierarchy,
  cast(ddtext as postingperiodhierarchytext) AS PostingPeriodHierarchyText
FROM dd07t
;