I_ProductHierarchyNormalNode

DDL: I_PRODUCTHIERARCHYNORMALNODE Type: view BASIC Package: VDM_MD_PRODUCT_HIERARCHY

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)

SourceAliasJoin Type
prd_hry_nd_val prd_hry_nd_val from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_ProductHierarchyNormalNodeT _Text $projection.ProductHierarchyNode = _Text.ProductHierarchyNode

Annotations (12)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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

}