SHSM_CostCenterHierarchyNVH

DDL: SHSM_COSTCENTERHIERARCHYNVH SQL: SHSMFICCANVH Type: view

Cost Center Hierarchy Node Value Help

SHSM_CostCenterHierarchyNVH is a CDS View that provides data about "Cost Center Hierarchy Node Value Help" in SAP S/4HANA. It reads from 2 data sources (hrrp_node_n, hrrp_nodet_n) and exposes 10 fields with key fields ControllingArea, CostCenterHierarchy, HierarchyNode, ValidityEndDate, Language. It has 3 associations to related views.

Data Sources (2)

SourceAliasJoin Type
hrrp_node_n hrrp_node_n from
hrrp_nodet_n hrrp_nodet_n left_outer

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_ControllingArea _ControllingArea $projection.ControllingArea = _ControllingArea.ControllingArea
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..*] I_CostCenterHierarchy _Hierarchy $projection.CostCenterHierarchy = _Hierarchy.CostCenterHierarchy and $projection.ControllingArea = _Hierarchy.ControllingArea

Annotations (11)

NameValueLevelField
EndUserText.label Cost Center Hierarchy Node Value Help view
AbapCatalog.sqlViewName SHSMFICCANVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.representativeKey HierarchyNode view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea hrrp_node_n kokrs Org. Value
KEY CostCenterHierarchy
KEY HierarchyNode
KEY ValidityEndDate hrrp_node_n hryvalto Valid To
KEY Language hrrp_nodet_n spras Off. Language
HierarchyNodeText hrrp_nodet_n nodetxt Description
ValidityStartDate hrrp_node_n hryvalfrom Valid From
_ControllingArea _ControllingArea
_Language _Language
_Hierarchy _Hierarchy

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 SHSM_CostCenterHierarchyNVH.
-- 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.
-- SQL view name: SHSMFICCANVH

CREATE VIEW SHSM_CostCenterHierarchyNVH AS
SELECT
  hrrp_node_n.kokrs AS ControllingArea,
  cast( hrrp_node_n.hryid as fis_hryid_cctr preserving type ) AS CostCenterHierarchy,
  cast( hrrp_node_n.hrynode as fis_hrynid_cctr ) AS HierarchyNode,
  hrrp_node_n.hryvalto AS ValidityEndDate,
  hrrp_nodet_n.spras AS Language,
  hrrp_nodet_n.nodetxt AS HierarchyNodeText,
  hrrp_node_n.hryvalfrom AS ValidityStartDate
FROM hrrp_node_n
LEFT OUTER JOIN hrrp_nodet_n ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_ControllingArea AS _ControllingArea ON ControllingArea = _ControllingArea.ControllingArea  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_CostCenterHierarchy AS _Hierarchy ON CostCenterHierarchy = _Hierarchy.CostCenterHierarchy AND ControllingArea = _Hierarchy.ControllingArea  -- association [1..*]
;