I_CnsldtnDocumentTypeHierDirT

DDL: I_CNSLDTNDOCUMENTTYPEHIERDIRT Type: view BASIC

Consolidation DocType Hier Dir - Text

I_CnsldtnDocumentTypeHierDirT is a Basic CDS View that provides data about "Consolidation DocType Hier Dir - Text" in SAP S/4HANA. It reads from 1 data source (hrrp_directoryt) and exposes 6 fields with key fields ConsolidationDocTypeHierarchy, ValidityEndDate, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
hrrp_directoryt hrrp_directoryt from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICCDOCTYPEHDIRT 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 #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.representativeKey ConsolidationDocTypeHierarchy view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
EndUserText.label Consolidation DocType Hier Dir - Text view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationDocTypeHierarchy hrrp_directoryt hryid Hierarchy ID
KEY ValidityEndDate hrrp_directoryt hryvalto Valid To
KEY Language hrrp_directoryt spras Off. Language
ValidityStartDate hrrp_directoryt hryvalfrom Valid From
ConsolidationDocTypeHierTxt hrrp_directoryt hrytxt Description
_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_CnsldtnDocumentTypeHierDirT.
-- 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_CnsldtnDocumentTypeHierDirT AS
SELECT
  hrrp_directoryt.hryid AS ConsolidationDocTypeHierarchy,
  hrrp_directoryt.hryvalto AS ValidityEndDate,
  hrrp_directoryt.spras AS Language,
  hrrp_directoryt.hryvalfrom AS ValidityStartDate,
  hrrp_directoryt.hrytxt AS ConsolidationDocTypeHierTxt
FROM hrrp_directoryt
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;