A_CnsldtnUnitHierDir

DDL: A_CNSLDTNUNITHIERDIR Type: view COMPOSITE

Consolidation Unit Hierarchy Directory

A_CnsldtnUnitHierDir is a Composite CDS View that provides data about "Consolidation Unit Hierarchy Directory" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnUnitHierDirEnhcd) and exposes 7 fields with key fields ConsolidationUnitHierarchy, ValidityEndDate.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnUnitHierDirEnhcd I_CnsldtnUnitHierDirEnhcd from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ACSUNITHIERDIR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey ConsolidationUnitHierarchy view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Consolidation Unit Hierarchy Directory view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationUnitHierarchy ConsolidationUnitHierarchy Hierarchy ID
KEY ValidityEndDate ValidityEndDate ValidTo
ValidityStartDate ValidityStartDate Validity Start Date
LastChangedByUser LastChangedByUser User Name
LastChangeDateTime LastChangeDateTime Timestamp
MDHierType HierarchyType Hierarchy Type
HierarchyType HierarchyType Hierarchy Type

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 A_CnsldtnUnitHierDir.
-- 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 A_CnsldtnUnitHierDir AS
SELECT
  ConsolidationUnitHierarchy,
  ValidityEndDate,
  ValidityStartDate,
  LastChangedByUser,
  LastChangeDateTime,
  HierarchyType AS MDHierType,
  HierarchyType
FROM I_CnsldtnUnitHierDirEnhcd
;