I_CnsldtnCustGroupHierDirT

DDL: I_CNSLDTNCUSTGROUPHIERDIRT Type: view BASIC

Consolidation Customer Group HierDir - Txt

I_CnsldtnCustGroupHierDirT is a Basic CDS View that provides data about "Consolidation Customer Group HierDir - Txt" in SAP S/4HANA. It reads from 1 data source (P_CnsldtnUnivHierarchyText) and exposes 6 fields with key fields Language, AdditionalMasterDataHierarchy, ValidityEndDate.

Data Sources (1)

SourceAliasJoin Type
P_CnsldtnUnivHierarchyText P_CnsldtnUnivHierarchyText from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICCCUSTGRPHDT 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 Customer Group HierDir - Txt 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_CnsldtnCustGroupHierDirT.
-- 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_CnsldtnCustGroupHierDirT AS
SELECT
  _HierarchyText.Language AS Language,
  cast(_HierarchyText.UniversalHierHierarchyID as fincs_addlmdhierarchy preserving type ) AS AdditionalMasterDataHierarchy,
  _HierarchyText.ValidityEndDate AS ValidityEndDate,
  _HierarchyText.ValidityStartDate AS ValidityStartDate,
  _HierarchyText.UniversalHierarchyText AS AdditionalMasterDataHierText
FROM P_CnsldtnUnivHierarchyText
;