I_FinSrvcsProdGrpHierNode

DDL: I_FINSRVCSPRODGRPHIERNODE Type: view_entity COMPOSITE

Fin Srvcs Product Group Hierarchy Node

I_FinSrvcsProdGrpHierNode (Composite)

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

Financial Services

I_FinSrvcsProdGrpHierNode is a Composite CDS View that provides data about "Fin Srvcs Product Group Hierarchy Node" in SAP S/4HANA. It reads from 1 data source (R_HierRuntimeRprstnNode) and exposes 13 fields with key fields FinSrvcsProductGroupHierarchy, HierarchyNode, ValidityEndDate. It has 3 associations to related views.

SAP Help Documentation

CategoryCDS Views for Accounting Enhancements for Banking
Data CategoryDimension
Purpose
This CDS view provides the data for a product group node within a product group hierarchy. The corresponding descriptions are provided by the text view I_FinSrvcsProdGrpHierNodeT . 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 a role with the following restriction types set to read access: HRYTYPE_HRYID_FFS These restriction types are edited in the Maintain Business Roles app.

Structure
The CDS view contains the following fields: FinSrvcsProductGroupHierarchy : This field provides the ID of the product group hierarchy to which the node belongs. HierarchyNode : This field provides the key of the product group node. HierarchyNodeVal : This field provides the value of the product group node. ParentNode : This field provides the key of the higher-level product group node. HierarchyNodeSequence : This field provides information about where the node appears in the sequence of the product group hierarchy. HierarchyNodeLevel : This field provides the level within the hierarchy tree on which the product group node appears. NodeType : This field provides the node type (for example: R = root node)

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessFinancial Services
Application ComponentFIN-IE-FS
CapabilitiesData Source for Defining CDS Entities, Data Source for Data Extraction, Association Target for Defining CDS Entities
PackageFinancial Services for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
R_HierRuntimeRprstnNode HierNode from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_FinSrvcsProdGroupHierarchy _Hierarchy $projection.FinSrvcsProductGroupHierarchy = _Hierarchy.FinSrvcsProductGroupHierarchy and $projection.ValidityEndDate = _Hierarchy.ValidityEndDate
[0..*] I_FinSrvcsProdGrpHierNodeT _Text $projection.HierarchyNode = _Text.HierarchyNode and $projection.FinSrvcsProductGroupHierarchy = _Text.FinSrvcsProductGroupHierarchy and $projection.FinancialServicesProductGroup = ''
[0..1] I_FinServicesProductGroup _FinServicesProductGroup $projection.FinancialServicesProductGroup = _FinServicesProductGroup.FinancialServicesProductGroup

Annotations (11)

NameValueLevelField
EndUserText.label Fin Srvcs Product Group Hierarchy Node view
ObjectModel.dataCategory #HIERARCHY view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #MANDATORY view
Metadata.ignorePropagatedAnnotations true view
Analytics.dataExtraction.enabled true view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY FinSrvcsProductGroupHierarchy Product Group Hierarchy
KEY HierarchyNode R_HierRuntimeRprstnNode HierarchyNode Hierarchy node
KEY ValidityEndDate R_HierRuntimeRprstnNode ValidityEndDate Validity End Date
ParentNode R_HierRuntimeRprstnNode ParentNode Hierarchy parent node
ValidityStartDate R_HierRuntimeRprstnNode ValidityStartDate Validity Start Date
FinancialServicesProductGroup R_HierRuntimeRprstnNode FinancialServicesProductGroup Product Group (Financial Services)
HierarchyNodeSequence R_HierRuntimeRprstnNode SequenceNumber Hierarchy Sequence Number
HierarchyNodeLevel R_HierRuntimeRprstnNode HierarchyNodeLevel Hierarchy Node Level
NodeType R_HierRuntimeRprstnNode NodeType Hierarchy node type
HierarchyNodeVal R_HierRuntimeRprstnNode HierarchyNodeVal Node value
_Hierarchy _Hierarchy
_Text _Text
_FinServicesProductGroup _FinServicesProductGroup

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_FinSrvcsProdGrpHierNode.
-- 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_FinSrvcsProdGrpHierNode AS
SELECT
  cast ( HierDirectory.HierarchyShortID as ffs_hryid_product_group preserving type ) AS FinSrvcsProductGroupHierarchy,
  HierNode.HierarchyNode AS HierarchyNode,
  HierNode.ValidityEndDate AS ValidityEndDate,
  HierNode.ParentNode AS ParentNode,
  HierNode.ValidityStartDate AS ValidityStartDate,
  HierNode.FinancialServicesProductGroup AS FinancialServicesProductGroup,
  HierNode.SequenceNumber AS HierarchyNodeSequence,
  HierNode.HierarchyNodeLevel AS HierarchyNodeLevel,
  HierNode.NodeType AS NodeType,
  HierNode.HierarchyNodeVal AS HierarchyNodeVal
FROM R_HierRuntimeRprstnNode AS HierNode
LEFT OUTER JOIN I_FinSrvcsProdGroupHierarchy AS _Hierarchy ON FinSrvcsProductGroupHierarchy = _Hierarchy.FinSrvcsProductGroupHierarchy AND ValidityEndDate = _Hierarchy.ValidityEndDate  -- association [1..1]
LEFT OUTER JOIN I_FinSrvcsProdGrpHierNodeT AS _Text ON HierarchyNode = _Text.HierarchyNode AND FinSrvcsProductGroupHierarchy = _Text.FinSrvcsProductGroupHierarchy AND FinancialServicesProductGroup = ''  -- association [0..*]
LEFT OUTER JOIN I_FinServicesProductGroup AS _FinServicesProductGroup ON FinancialServicesProductGroup = _FinServicesProductGroup.FinancialServicesProductGroup  -- association [0..1]
;