I_ProductHierarchyNormalNode
Product Hierarchy Normal Nodes
I_ProductHierarchyNormalNode is a Basic CDS View that provides data about "Product Hierarchy Normal Nodes" in SAP S/4HANA. It reads from 1 data source (prd_hry_nd_val) and exposes 3 fields with key field ProductHierarchyNode. It has 1 association to related views. Part of development package VDM_MD_PRODUCT_HIERARCHY.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| prd_hry_nd_val | prd_hry_nd_val | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | I_ProductHierarchyNormalNodeT | _Text | $projection.ProductHierarchyNode = _Text.ProductHierarchyNode |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPRDHRYNDVAL | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Product Hierarchy Normal Nodes | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | ProductHierarchyNode | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| Search.searchable | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProductHierarchyNode | hier_node_value | Node | |
| ProductHierarchyNodeText | ||||
| _Text | _Text |
@AbapCatalog: {
sqlViewName: 'IPRDHRYNDVAL',
compiler.compareFilter: true,
preserveKey: true
}
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Product Hierarchy Normal Nodes'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
representativeKey: 'ProductHierarchyNode',
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #M
}
}
@Search.searchable: true
define view I_ProductHierarchyNormalNode
as select from prd_hry_nd_val
association [1..*] to I_ProductHierarchyNormalNodeT as _Text on $projection.ProductHierarchyNode = _Text.ProductHierarchyNode
{
@Search: {
defaultSearchElement: true,
ranking: #HIGH,
fuzzinessThreshold: 0.7
}
// @ObjectModel.text.element: ['ProductHierarchyNodeText']
@ObjectModel.text.association: '_Text'
@EndUserText.label: 'Node'
key hier_node_value as ProductHierarchyNode, //the GFN is also incorrectly used as per warning
//remove the below before releasing and create a new view for search help to have only language dependent text.
@UI.hidden: true
_Text[1: Language = $session.system_language].ProductHierarchyNodeText as ProductHierarchyNodeText,
_Text
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA