FISVD_HRRP_NODE_DEX

DDL: FISVD_HRRP_NODE_DEX Type: view_entity Package: FINS_FIS_GL

Extraction view for HRRP_NODE

FISVD_HRRP_NODE_DEX is a CDS View that provides data about "Extraction view for HRRP_NODE" in SAP S/4HANA. It reads from 1 data source (hrrp_node) and exposes 15 fields with key fields GLAccountHierarchy, HierarchyNode, ValidityEndDate, ChartOfAccounts, HierarchyVersion. It has 5 associations to related views. Part of development package FINS_FIS_GL.

Data Sources (1)

SourceAliasJoin Type
hrrp_node hrrp_node from

Associations (5)

CardinalityTargetAliasCondition
[0..*] I_GLAccountHierarchyNode _GLAccountHierarchyNode $projection.GLAccountHierarchy = _GLAccountHierarchyNode.GLAccountHierarchy and $projection.HierarchyNode = _GLAccountHierarchyNode.HierarchyNode
[0..*] I_GLAccountHierarchyNode _GLAccountParentNode $projection.GLAccountHierarchy = _GLAccountParentNode.GLAccountHierarchy and $projection.HierarchyParentNode = _GLAccountParentNode.HierarchyNode
[0..*] I_GLAccountHierarchy _Hierarchy $projection.GLAccountHierarchy = _Hierarchy.GLAccountHierarchy
[0..1] I_ChartOfAccounts _ChartOfAccounts $projection.ChartOfAccounts = _ChartOfAccounts.ChartOfAccounts
[0..1] I_GLAccountInChartOfAccounts _GLAccountInChartOfAccounts $projection.ChartOfAccounts = _GLAccountInChartOfAccounts.ChartOfAccounts and $projection.GLAccount = _GLAccountInChartOfAccounts.GLAccount

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey HierarchyVersion view
Analytics.technicalName FISVDHRRPNODE view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
EndUserText.label Extraction view for HRRP_NODE view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #NONE view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY GLAccountHierarchy hrrp_node hryid Hierarchy ID
KEY HierarchyNode hrrp_node hrynode Node
KEY ValidityEndDate hrrp_node hryvalto Valid To
KEY ChartOfAccounts hrrp_node nodecls Node Class
KEY HierarchyVersion hrrp_node hryver Version: Structures
KEY HierarchyParentNode hrrp_node parnode Par. Node
ValidityStartDate hrrp_node hryvalfrom Valid From
HierarchyNodeType hrrp_node nodetype Object Type
GLAccount hrrp_node nodevalue Value
BalanceIndicator hrrp_node balind Balance
_Hierarchy _Hierarchy
_GLAccountHierarchyNode _GLAccountHierarchyNode
_ChartOfAccounts _ChartOfAccounts
_GLAccountInChartOfAccounts _GLAccountInChartOfAccounts
_GLAccountParentNode _GLAccountParentNode

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 FISVD_HRRP_NODE_DEX.
-- 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 FISVD_HRRP_NODE_DEX AS
SELECT
  hrrp_node.hryid AS GLAccountHierarchy,
  hrrp_node.hrynode AS HierarchyNode,
  hrrp_node.hryvalto AS ValidityEndDate,
  hrrp_node.nodecls AS ChartOfAccounts,
  hrrp_node.hryver AS HierarchyVersion,
  hrrp_node.parnode AS HierarchyParentNode,
  hrrp_node.hryvalfrom AS ValidityStartDate,
  hrrp_node.nodetype AS HierarchyNodeType,
  hrrp_node.nodevalue AS GLAccount,
  hrrp_node.balind AS BalanceIndicator
FROM hrrp_node
LEFT OUTER JOIN I_GLAccountHierarchyNode AS _GLAccountHierarchyNode ON GLAccountHierarchy = _GLAccountHierarchyNode.GLAccountHierarchy AND HierarchyNode = _GLAccountHierarchyNode.HierarchyNode  -- association [0..*]
LEFT OUTER JOIN I_GLAccountHierarchyNode AS _GLAccountParentNode ON GLAccountHierarchy = _GLAccountParentNode.GLAccountHierarchy AND HierarchyParentNode = _GLAccountParentNode.HierarchyNode  -- association [0..*]
LEFT OUTER JOIN I_GLAccountHierarchy AS _Hierarchy ON GLAccountHierarchy = _Hierarchy.GLAccountHierarchy  -- association [0..*]
LEFT OUTER JOIN I_ChartOfAccounts AS _ChartOfAccounts ON ChartOfAccounts = _ChartOfAccounts.ChartOfAccounts  -- association [0..1]
LEFT OUTER JOIN I_GLAccountInChartOfAccounts AS _GLAccountInChartOfAccounts ON ChartOfAccounts = _GLAccountInChartOfAccounts.ChartOfAccounts AND GLAccount = _GLAccountInChartOfAccounts.GLAccount  -- association [0..1]
;