I_FundHierarchyNodeText

DDL: I_FUNDHIERARCHYNODETEXT SQL: IFUNDHNTXT Type: view BASIC Package: PSM_S4C_BASIS

Fund Hierarchy Node Text

I_FundHierarchyNodeText is a Basic CDS View that provides data about "Fund Hierarchy Node Text" in SAP S/4HANA. It reads from 2 data sources (hrrp_nodet, I_FundHierarchy) and exposes 10 fields with key fields FundHierarchy, HierarchyNode, ValidityEndDate, Language. It has 2 associations to related views. Part of development package PSM_S4C_BASIS.

Data Sources (2)

SourceAliasJoin Type
hrrp_nodet hrrp_nodet from
I_FundHierarchy I_FundHierarchy inner

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..*] I_FundHierarchy _Hierarchy $projection.FundHierarchy = _Hierarchy.FundHierarchy

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IFUNDHNTXT view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Fund Hierarchy Node Text view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey HierarchyNode view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY FundHierarchy
KEY HierarchyNode hrrp_nodet hrynode Node
KEY ValidityEndDate
KEY Language hrrp_nodet spras Off. Language
HierarchyNodeText hrrp_nodet nodetxt Description
HierarchyNodeShortText
ValidityStartDate
FinancialManagementArea I_FundHierarchy FinancialManagementArea FM Area
_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 I_FundHierarchyNodeText.
-- 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: IFUNDHNTXT

CREATE VIEW I_FundHierarchyNodeText AS
SELECT
  cast( hrrp_nodet.hryid as fmis_hryid_fund preserving type ) AS FundHierarchy,
  hrrp_nodet.hrynode AS HierarchyNode,
  cast( hrrp_nodet.hryvalto as fis_datbi preserving type ) AS ValidityEndDate,
  hrrp_nodet.spras AS Language,
  hrrp_nodet.nodetxt AS HierarchyNodeText,
  substring(hrrp_nodet.nodetxt, 1, 20) AS HierarchyNodeShortText,
  cast( hrrp_nodet.hryvalfrom as fis_datab preserving type ) AS ValidityStartDate,
  I_FundHierarchy.FinancialManagementArea AS FinancialManagementArea
FROM hrrp_nodet
INNER JOIN I_FundHierarchy ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_FundHierarchy AS _Hierarchy ON FundHierarchy = _Hierarchy.FundHierarchy  -- association [1..*]
;