R_CurHierRtmeRepresentation

DDL: R_CURHIERRTMEREPRESENTATION Type: view_entity COMPOSITE

Current Hierarchy Directory

R_CurHierRtmeRepresentation is a Composite CDS View that provides data about "Current Hierarchy Directory" in SAP S/4HANA. It reads from 1 data source (R_HierRuntimeRepresentation) and exposes 8 fields with key field UniversalHierarchy.

Data Sources (1)

SourceAliasJoin Type
R_HierRuntimeRepresentation R_HierRuntimeRepresentation from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Current Hierarchy Directory view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XXL view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY UniversalHierarchy HierarchyID Hierarchy ID
HierarchyVersion HierarchyVersion Version
ValidityEndDate ValidityEndDate ValidTo
ValidityStartDate ValidityStartDate Validity Start Date
HierarchyType HierarchyType Hierarchy Type
LastChangedByUser LastChangedByUser User Name
LastChangeDateTime LastChangeDateTime Timestamp
_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 R_CurHierRtmeRepresentation.
-- 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 R_CurHierRtmeRepresentation AS
SELECT
  HierarchyID AS UniversalHierarchy,
  HierarchyVersion,
  ValidityEndDate,
  ValidityStartDate,
  HierarchyType,
  LastChangedByUser,
  LastChangeDateTime
FROM R_HierRuntimeRepresentation
;