I_MrchdsCatHierNodeText

DDL: I_MRCHDSCATHIERNODETEXT Type: view_entity BASIC Package: VDM_RFM_MCHN

Merchandise Cat Hier Node - Text

I_MrchdsCatHierNodeText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

MrchdsCatHierNodeText · Cross Applications

I_MrchdsCatHierNodeText is a Basic CDS View that provides data about "Merchandise Cat Hier Node - Text" in SAP S/4HANA. It reads from 2 data sources (klah, swor) and exposes 7 fields with key fields MrchdsCategoryHierarchyNode, Language. It has 2 associations to related views. Part of development package VDM_RFM_MCHN.

SAP Help Documentation

CategoryProduct Taxonomies
Purpose
This CDS view provides the list of merchandise category hierarchy nodes created in different languages. This CDS view provides the data to answer the following business questions: What are the varieties of descriptions and texts associated with merchandise category hierarchy nodes for a given language? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users who want to use this CDS view must have the following authorization objects assigned: C_TCLA_BKA (Controls user access to class types) C_KLAH_BKP (Authorization for class maintenance)

Structure
Further Important Fields Important fields in this view include the following: Field Name Description MrchdsCategoryHierarchyNode Merchandise category hierarchy node Language Language MrchdsCatHierNodeText Merchandise category hierarchy node text

View on SAP Help Portal →

SAP API Hub

CategoryBasic
StateC1
Line of BusinessCross Applications
Application ComponentLO-RFM-MD-MC-2CL
CapabilitiesData Source for Data Extraction,Data Source in SQL Select,Association Target for Defining CDS Entities,Language-Dependent Text,Data Source for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageCross Applications for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view provides the list of merchandise category hierarchy nodes.</p> This CDS view provides the data to answer the following business questions:<ul> <li><p>What are the merchandise category hierarchy nodes with merchandise management system class type 0?</p></li> </ul> <p>To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views.</p>

Documentation

Data Sources (2)

SourceAliasJoin Type
klah MrchdsCatHiernode from
swor text inner

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_MrchdsCategoryHierarchyNode _MrchdsCategoryHierarchyNode $projection.MrchdsCategoryHierarchyNode = _MrchdsCategoryHierarchyNode.MrchdsCategoryHierarchyNode
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey MrchdsCategoryHierarchyNode view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.sapObjectNodeType.name MrchdsCatHierNodeText view
EndUserText.label Merchandise Cat Hier Node - Text view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY MrchdsCategoryHierarchyNode Merchandise Category Hierarchy Node
KEY Language swor spras Off. Language
MrchdsCatHierNodeText swor kschl Tax Item Type
ClassInternalID klah clint Internal Class Number
ClassKeywordPositionNumber swor klpos Position Number
_MrchdsCategoryHierarchyNode _MrchdsCategoryHierarchyNode
_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_MrchdsCatHierNodeText.
-- 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_MrchdsCatHierNodeText AS
SELECT
  cast(MrchdsCatHiernode.class as rfm_mrchdcathiernode preserving type ) AS MrchdsCategoryHierarchyNode,
  text.spras AS Language,
  text.kschl AS MrchdsCatHierNodeText,
  MrchdsCatHiernode.clint AS ClassInternalID,
  text.klpos AS ClassKeywordPositionNumber
FROM klah AS MrchdsCatHiernode
INNER JOIN swor AS text ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_MrchdsCategoryHierarchyNode AS _MrchdsCategoryHierarchyNode ON MrchdsCategoryHierarchyNode = _MrchdsCategoryHierarchyNode.MrchdsCategoryHierarchyNode  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;