I_CnsldtnPostingLevelHierDirT

DDL: I_CNSLDTNPOSTINGLEVELHIERDIRT Type: view BASIC

Consolidation Posting Level Hier Dir - Text

I_CnsldtnPostingLevelHierDirT is a Basic CDS View that provides data about "Consolidation Posting Level Hier Dir - Text" in SAP S/4HANA. It reads from 1 data source (hrrp_directoryt) and exposes 4 fields with key fields ConsolidationPostgLevelHier, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
hrrp_directoryt hrrp_directoryt from

Associations (1)

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

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICCPLEVLHIERDIRT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.representativeKey ConsolidationPostgLevelHier view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
EndUserText.label Consolidation Posting Level Hier Dir - Text view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationPostgLevelHier hrrp_directoryt hryid Hierarchy ID
KEY Language hrrp_directoryt spras Off. Language
ConsolidationPostgLevelHierTxt hrrp_directoryt hrytxt 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_CnsldtnPostingLevelHierDirT.
-- 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_CnsldtnPostingLevelHierDirT AS
SELECT
  hrrp_directoryt.hryid AS ConsolidationPostgLevelHier,
  hrrp_directoryt.spras AS Language,
  hrrp_directoryt.hrytxt AS ConsolidationPostgLevelHierTxt
FROM hrrp_directoryt
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;