I_CnsldtnProjectHierDirT

DDL: I_CNSLDTNPROJECTHIERDIRT Type: view BASIC Package: FIN_CS_MD_PROJECT

Consolidation Project Hier Dir - Text

I_CnsldtnProjectHierDirT is a Basic CDS View that provides data about "Consolidation Project Hier Dir - Text" in SAP S/4HANA. It reads from 1 data source (P_CnsldtnUnivHierarchyText) and exposes 6 fields with key fields Language, AdditionalMasterDataHierarchy, ValidityEndDate. Part of development package FIN_CS_MD_PROJECT.

Data Sources (1)

SourceAliasJoin Type
P_CnsldtnUnivHierarchyText P_CnsldtnUnivHierarchyText from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICCPROJECTHDT 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 #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey AdditionalMasterDataHierarchy view
VDM.viewType #BASIC view
EndUserText.label Consolidation Project Hier Dir - Text view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language _HierarchyText Language Report Text Language
KEY AdditionalMasterDataHierarchy
KEY ValidityEndDate _HierarchyText ValidityEndDate ValidTo
ValidityStartDate _HierarchyText ValidityStartDate Validity Start Date
AdditionalMasterDataHierText _HierarchyText UniversalHierarchyText
_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_CnsldtnProjectHierDirT.
-- 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_CnsldtnProjectHierDirT AS
SELECT
  _HierarchyText.Language AS Language,
  cast(_HierarchyText.UniversalHierHierarchyID as fincs_projecthierarchy preserving type ) AS AdditionalMasterDataHierarchy,
  _HierarchyText.ValidityEndDate AS ValidityEndDate,
  _HierarchyText.ValidityStartDate AS ValidityStartDate,
  _HierarchyText.UniversalHierarchyText AS AdditionalMasterDataHierText
FROM P_CnsldtnUnivHierarchyText
;