I_CnsldtnPostingLevelHierDir

DDL: I_CNSLDTNPOSTINGLEVELHIERDIR Type: view BASIC

Consolidation Posting Level Directory

I_CnsldtnPostingLevelHierDir is a Basic CDS View that provides data about "Consolidation Posting Level Directory" in SAP S/4HANA. It reads from 1 data source (hrrp_directory) and exposes 4 fields with key field ConsolidationPostgLevelHier. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
hrrp_directory hrrp_directory from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_CnsldtnPostingLevelHierDirT _Text $projection.ConsolidationPostgLevelHier = _Text.ConsolidationPostgLevelHier

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICCPLEVLHIERDIR view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey ConsolidationPostgLevelHier view
EndUserText.label Consolidation Posting Level Directory view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationPostgLevelHier hrrp_directory hryid Hierarchy ID
LastChangedByUser hrrp_directory upduser Changed By
LastChangeDateTime hrrp_directory updtime Updated At
_Text _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_CnsldtnPostingLevelHierDir.
-- 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_CnsldtnPostingLevelHierDir AS
SELECT
  hrrp_directory.hryid AS ConsolidationPostgLevelHier,
  hrrp_directory.upduser AS LastChangedByUser,
  hrrp_directory.updtime AS LastChangeDateTime
FROM hrrp_directory
LEFT OUTER JOIN I_CnsldtnPostingLevelHierDirT AS _Text ON ConsolidationPostgLevelHier = _Text.ConsolidationPostgLevelHier  -- association [1..*]
;