I_ProdUnivHierNodeWthVersIDTxt

DDL: I_PRODUNIVHIERNODEWTHVERSIDTXT Type: view BASIC

Product Hierarchy Node Text

I_ProdUnivHierNodeWthVersIDTxt is a Basic CDS View that provides data about "Product Hierarchy Node Text" in SAP S/4HANA. It reads from 1 data source (hrrp_nodet) and exposes 5 fields with key fields ProductHierarchyNodeID, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
hrrp_nodet HierarchyNode from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_ProdUnivHierNodeWthVersID _ProdUnivHierNodeWthVersID $projection.ProductHierarchyNodeID = _ProdUnivHierNodeWthVersID.ProductHierarchyNodeID
[1..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IPRDUNVHRYNDVIDT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Product Hierarchy Node Text view
ObjectModel.representativeKey ProductHierarchyNodeID view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.dataCategory #TEXT view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ProductHierarchyNodeID HierarchyNodeP uhnodeid Node ID
KEY Language spras Off. Language
ProductHierarchyNodeText nodetxt Description
_ProdUnivHierNodeWthVersID _ProdUnivHierNodeWthVersID
_Language _Language

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_ProdUnivHierNodeWthVersIDTxt.
-- 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 I_ProdUnivHierNodeWthVersIDTxt AS
SELECT
  HierarchyNodeP.uhnodeid AS ProductHierarchyNodeID,
  spras AS Language,
  nodetxt AS ProductHierarchyNodeText
FROM hrrp_nodet AS HierarchyNode
LEFT OUTER JOIN I_ProdUnivHierNodeWthVersID AS _ProdUnivHierNodeWthVersID ON ProductHierarchyNodeID = _ProdUnivHierNodeWthVersID.ProductHierarchyNodeID  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [1..1]
;