A_CnsldtnFundHierarchyNode

DDL: A_CNSLDTNFUNDHIERARCHYNODE Type: view_entity BASIC

Consolidation Fund - Hierarchy Node

A_CnsldtnFundHierarchyNode is a Basic CDS View that provides data about "Consolidation Fund - Hierarchy Node" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnFundHierarchyNode) and exposes 13 fields with key fields FinancialManagementArea, CnsldtnFundHierarchy, HierarchyNode, ValidityEndDate. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnFundHierarchyNode _Source from

Associations (2)

CardinalityTargetAliasCondition
[1..1] A_CnsldtnFundHierarchy _Hierarchy $projection.FinancialManagementArea = _Hierarchy.FinancialManagementArea and $projection.CnsldtnFundHierarchy = _Hierarchy.CnsldtnFundHierarchy and $projection.ValidityEndDate = _Hierarchy.ValidityEndDate
[0..*] A_CnsldtnFundHierarchyNodeT _Text $projection.FinancialManagementArea = _Text.FinancialManagementArea and $projection.CnsldtnFundHierarchy = _Text.CnsldtnFundHierarchy and $projection.HierarchyNode = _Text.HierarchyNode and $projection.ValidityEndDate = _Text.ValidityEndDate and $projection.Fund = ''

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
OData.entityType.name CnsldtnFundHierarchyNode_Type view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Consolidation Fund - Hierarchy Node view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY FinancialManagementArea I_CnsldtnFundHierarchyNode FinancialManagementArea FM Area
KEY CnsldtnFundHierarchy I_CnsldtnFundHierarchyNode CnsldtnFundHierarchy
KEY HierarchyNode I_CnsldtnFundHierarchyNode HierarchyNode Node
KEY ValidityEndDate I_CnsldtnFundHierarchyNode ValidityEndDate ValidTo
ValidityStartDate I_CnsldtnFundHierarchyNode ValidityStartDate Validity Start Date
ParentNode I_CnsldtnFundHierarchyNode ParentNode Parent Node
HierarchyVersion I_CnsldtnFundHierarchyNode HierarchyVersion Version
Fund I_CnsldtnFundHierarchyNode Fund Sender Fund
HierarchyNodeSequence I_CnsldtnFundHierarchyNode HierarchyNodeSequence
HierarchyNodeLevel I_CnsldtnFundHierarchyNode HierarchyNodeLevel Hierarchy Node Level
NodeType I_CnsldtnFundHierarchyNode NodeType Object Type
_Hierarchy _Hierarchy
_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 A_CnsldtnFundHierarchyNode.
-- 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_CnsldtnFundHierarchyNode AS
SELECT
  _Source.FinancialManagementArea AS FinancialManagementArea,
  _Source.CnsldtnFundHierarchy AS CnsldtnFundHierarchy,
  _Source.HierarchyNode AS HierarchyNode,
  _Source.ValidityEndDate AS ValidityEndDate,
  _Source.ValidityStartDate AS ValidityStartDate,
  _Source.ParentNode AS ParentNode,
  _Source.HierarchyVersion AS HierarchyVersion,
  _Source.Fund AS Fund,
  _Source.HierarchyNodeSequence AS HierarchyNodeSequence,
  _Source.HierarchyNodeLevel AS HierarchyNodeLevel,
  _Source.NodeType AS NodeType
FROM I_CnsldtnFundHierarchyNode AS _Source
LEFT OUTER JOIN A_CnsldtnFundHierarchy AS _Hierarchy ON FinancialManagementArea = _Hierarchy.FinancialManagementArea AND CnsldtnFundHierarchy = _Hierarchy.CnsldtnFundHierarchy AND ValidityEndDate = _Hierarchy.ValidityEndDate  -- association [1..1]
LEFT OUTER JOIN A_CnsldtnFundHierarchyNodeT AS _Text ON FinancialManagementArea = _Text.FinancialManagementArea AND CnsldtnFundHierarchy = _Text.CnsldtnFundHierarchy AND HierarchyNode = _Text.HierarchyNode AND ValidityEndDate = _Text.ValidityEndDate AND Fund = ''  -- association [0..*]
;