A_CnsldtnCostCenterHierNodeT

DDL: A_CNSLDTNCOSTCENTERHIERNODET Type: view_entity BASIC

Cnsldtn Cost Center Hier Node - Text

A_CnsldtnCostCenterHierNodeT is a Basic CDS View that provides data about "Cnsldtn Cost Center Hier Node - Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnCostCenterHierNodeT) and exposes 10 fields with key fields Language, ControllingArea, CnsldtnCostCenterHierarchy, HierarchyNode, ValidityEndDate. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnCostCenterHierNodeT _Source from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_CnsldtnCostCenterHierNode _HierarchyNode $projection.ControllingArea = _HierarchyNode.ControllingArea and $projection.CnsldtnCostCenterHierarchy = _HierarchyNode.CnsldtnCostCenterHierarchy and $projection.HierarchyNode = _HierarchyNode.HierarchyNode and $projection.ValidityEndDate = _HierarchyNode.ValidityEndDate

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.dataCategory #TEXT view
OData.entityType.name CnsldtnCostCenterHierNodeText_Type view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Cnsldtn Cost Center Hier Node - Text view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY Language I_CnsldtnCostCenterHierNodeT Language Report Text Language
KEY ControllingArea I_CnsldtnCostCenterHierNodeT ControllingArea Controlling Area
KEY CnsldtnCostCenterHierarchy I_CnsldtnCostCenterHierNodeT CnsldtnCostCenterHierarchy
KEY HierarchyNode I_CnsldtnCostCenterHierNodeT HierarchyNode Node
KEY ValidityEndDate I_CnsldtnCostCenterHierNodeT ValidityEndDate ValidTo
ValidityStartDate I_CnsldtnCostCenterHierNodeT ValidityStartDate Validity Start Date
ParentNode I_CnsldtnCostCenterHierNodeT ParentNode Parent Node
HierarchyVersion I_CnsldtnCostCenterHierNodeT HierarchyVersion Version
HierarchyNodeText I_CnsldtnCostCenterHierNodeT HierarchyNodeText
_HierarchyNode _HierarchyNode

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_CnsldtnCostCenterHierNodeT.
-- 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_CnsldtnCostCenterHierNodeT AS
SELECT
  _Source.Language AS Language,
  _Source.ControllingArea AS ControllingArea,
  _Source.CnsldtnCostCenterHierarchy AS CnsldtnCostCenterHierarchy,
  _Source.HierarchyNode AS HierarchyNode,
  _Source.ValidityEndDate AS ValidityEndDate,
  _Source.ValidityStartDate AS ValidityStartDate,
  _Source.ParentNode AS ParentNode,
  _Source.HierarchyVersion AS HierarchyVersion,
  _Source.HierarchyNodeText AS HierarchyNodeText
FROM I_CnsldtnCostCenterHierNodeT AS _Source
LEFT OUTER JOIN A_CnsldtnCostCenterHierNode AS _HierarchyNode ON ControllingArea = _HierarchyNode.ControllingArea AND CnsldtnCostCenterHierarchy = _HierarchyNode.CnsldtnCostCenterHierarchy AND HierarchyNode = _HierarchyNode.HierarchyNode AND ValidityEndDate = _HierarchyNode.ValidityEndDate  -- association [1..1]
;