A_CnsldtnProductGroupHierNode

DDL: A_CNSLDTNPRODUCTGROUPHIERNODE Type: view_entity BASIC Package: FIN_CS_MD_PRODUCTGROUP

Cnsldtn Product Group Hierarchy Node

A_CnsldtnProductGroupHierNode is a Basic CDS View that provides data about "Cnsldtn Product Group Hierarchy Node" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnProductGroupHierNode) and exposes 12 fields with key fields CnsldtnProductGroupHierarchy, HierarchyNode, ValidityEndDate. It has 2 associations to related views. It is exposed through 1 OData service (API_CNSLDTNPRODGROUPHIER). Part of development package FIN_CS_MD_PRODUCTGROUP.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnProductGroupHierNode _Source from

Associations (2)

CardinalityTargetAliasCondition
[1..1] A_CnsldtnProductGroupHierarchy _Hierarchy $projection.CnsldtnProductGroupHierarchy = _Hierarchy.CnsldtnProductGroupHierarchy and $projection.ValidityEndDate = _Hierarchy.ValidityEndDate
[0..*] A_CnsldtnProductGroupHierNodeT _Text $projection.CnsldtnProductGroupHierarchy = _Text.CnsldtnProductGroupHierarchy and $projection.HierarchyNode = _Text.HierarchyNode and $projection.ValidityEndDate = _Text.ValidityEndDate and $projection.ProductGroup = ''

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 CnsldtnProductGroupHierNode_Type view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Cnsldtn Product Group Hierarchy Node view

OData Services (1)

ServiceBindingVersionContractRelease
API_CNSLDTNPRODGROUPHIER API_CNSLDTNPRODGROUPHIER V4 C2 C1

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY CnsldtnProductGroupHierarchy I_CnsldtnProductGroupHierNode CnsldtnProductGroupHierarchy
KEY HierarchyNode I_CnsldtnProductGroupHierNode HierarchyNode Node
KEY ValidityEndDate I_CnsldtnProductGroupHierNode ValidityEndDate ValidTo
ValidityStartDate I_CnsldtnProductGroupHierNode ValidityStartDate Validity Start Date
ParentNode I_CnsldtnProductGroupHierNode ParentNode Parent Node
HierarchyVersion I_CnsldtnProductGroupHierNode HierarchyVersion Version
ProductGroup I_CnsldtnProductGroupHierNode ProductGroup Product Sold Group
HierarchyNodeSequence I_CnsldtnProductGroupHierNode HierarchyNodeSequence
HierarchyNodeLevel I_CnsldtnProductGroupHierNode HierarchyNodeLevel Hierarchy Node Level
NodeType I_CnsldtnProductGroupHierNode 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_CnsldtnProductGroupHierNode.
-- 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_CnsldtnProductGroupHierNode AS
SELECT
  _Source.CnsldtnProductGroupHierarchy AS CnsldtnProductGroupHierarchy,
  _Source.HierarchyNode AS HierarchyNode,
  _Source.ValidityEndDate AS ValidityEndDate,
  _Source.ValidityStartDate AS ValidityStartDate,
  _Source.ParentNode AS ParentNode,
  _Source.HierarchyVersion AS HierarchyVersion,
  _Source.ProductGroup AS ProductGroup,
  _Source.HierarchyNodeSequence AS HierarchyNodeSequence,
  _Source.HierarchyNodeLevel AS HierarchyNodeLevel,
  _Source.NodeType AS NodeType
FROM I_CnsldtnProductGroupHierNode AS _Source
LEFT OUTER JOIN A_CnsldtnProductGroupHierarchy AS _Hierarchy ON CnsldtnProductGroupHierarchy = _Hierarchy.CnsldtnProductGroupHierarchy AND ValidityEndDate = _Hierarchy.ValidityEndDate  -- association [1..1]
LEFT OUTER JOIN A_CnsldtnProductGroupHierNodeT AS _Text ON CnsldtnProductGroupHierarchy = _Text.CnsldtnProductGroupHierarchy AND HierarchyNode = _Text.HierarchyNode AND ValidityEndDate = _Text.ValidityEndDate AND ProductGroup = ''  -- association [0..*]
;