A_ProdUnivHierProdsByHierNode

DDL: A_PRODUNIVHIERPRODSBYHIERNODE Type: view_entity COMPOSITE

Product Universal Hierarchy - Products

A_ProdUnivHierProdsByHierNode is a Composite CDS View that provides data about "Product Universal Hierarchy - Products" in SAP S/4HANA. It reads from 1 data source (R_ProdUnivHierProdsByNodeTP) and exposes 10 fields with key fields ProdUnivHierarchy, HierarchyNode, ProdHierarchyValidityEndDate, Product.

Data Sources (1)

SourceAliasJoin Type
R_ProdUnivHierProdsByNodeTP R_ProdUnivHierProdsByNodeTP projection

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Product Universal Hierarchy - Products view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
Metadata.ignorePropagatedAnnotations true view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY ProdUnivHierarchy ProdUnivHierarchy
KEY HierarchyNode HierarchyNode Product Hierarchy Node
KEY ProdHierarchyValidityEndDate ProdHierarchyValidityEndDate
KEY Product Product Product Sold
ProdHierarchyValidityStartDate ProdHierarchyValidityStartDate
ParentNode ParentNode Parent Node
NodeType NodeType Object Type
Product_Text Product_Text Description
_Product _Product
_ProductDescription _ProductDescription

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_ProdUnivHierProdsByHierNode.
-- 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_ProdUnivHierProdsByHierNode AS
SELECT
  ProdUnivHierarchy,
  HierarchyNode,
  ProdHierarchyValidityEndDate,
  Product,
  ProdHierarchyValidityStartDate,
  ParentNode,
  NodeType,
  Product_Text
FROM R_ProdUnivHierProdsByNodeTP
;