I_CnsldtnProjectHierDirEnhcd

DDL: I_CNSLDTNPROJECTHIERDIRENHCD SQL: ICSPROJECTHDE Type: view BASIC

Consolidation Project Hierarchy Directory

I_CnsldtnProjectHierDirEnhcd is a Basic CDS View that provides data about "Consolidation Project Hierarchy Directory" in SAP S/4HANA. It reads from 2 data sources (fincs_addlcharcx, hrrp_directory) and exposes 7 fields with key fields AdditionalMasterDataHierarchy, ValidityEndDate. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
fincs_addlcharcx _Conf cross
hrrp_directory hrrp_directory from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_CnsldtnProjectHierDirT _text $projection.AdditionalMasterDataHierarchy = _text.AdditionalMasterDataHierarchy and $projection.ValidityEndDate = _text.ValidityEndDate

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICSPROJECTHDE view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Consolidation Project Hierarchy Directory view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey AdditionalMasterDataHierarchy view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY AdditionalMasterDataHierarchy
KEY ValidityEndDate
ValidityStartDate
LastChangedByUser hrrp_directory upduser Changed By
LastChangeDateTime updtime Updated At
HierarchyType hrytyp Hierarchy Type
_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 I_CnsldtnProjectHierDirEnhcd.
-- 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.
-- SQL view name: ICSPROJECTHDE

CREATE VIEW I_CnsldtnProjectHierDirEnhcd AS
SELECT
  cast(hrrp_directory.hryid as fincs_hryid) AS AdditionalMasterDataHierarchy,
  cast(hrrp_directory.hryvalto as fis_datbi) AS ValidityEndDate,
  cast(hrrp_directory.hryvalfrom as fis_datab) AS ValidityStartDate,
  hrrp_directory.upduser AS LastChangedByUser,
  updtime AS LastChangeDateTime,
  hrytyp AS HierarchyType
FROM hrrp_directory
CROSS JOIN fincs_addlcharcx AS _Conf
LEFT OUTER JOIN I_CnsldtnProjectHierDirT AS _text ON AdditionalMasterDataHierarchy = _text.AdditionalMasterDataHierarchy AND ValidityEndDate = _text.ValidityEndDate  -- association [1..*]
;