I_BudgetAccountHierarchyNodeT

DDL: I_BUDGETACCOUNTHIERARCHYNODET SQL: IPSMS4CBDACHNT Type: view BASIC

Budget Account Hierarchy Node - Text

I_BudgetAccountHierarchyNodeT is a Basic CDS View that provides data about "Budget Account Hierarchy Node - Text" in SAP S/4HANA. It reads from 2 data sources (hrrp_nodet, I_BudgetAccountHierarchy) and exposes 9 fields with key fields BudgetAccountHierarchy, HierarchyNode, ValidityEndDate, Language. It has 2 associations to related views.

Data Sources (2)

SourceAliasJoin Type
hrrp_nodet hrrp_nodet from
I_BudgetAccountHierarchy I_BudgetAccountHierarchy inner

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..*] I_BudgetAccountHierarchy _Hierarchy $projection.BudgetAccountHierarchy = _Hierarchy.BudgetAccountHierarchy

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IPSMS4CBDACHNT view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Budget Account 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 (9)

KeyFieldSource TableSource FieldDescription
KEY BudgetAccountHierarchy
KEY HierarchyNode hrrp_nodet hrynode Node
KEY ValidityEndDate
KEY Language hrrp_nodet spras Off. Language
HierarchyNodeText hrrp_nodet nodetxt Description
HierarchyNodeShortText
ValidityStartDate
_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_BudgetAccountHierarchyNodeT.
-- 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: IPSMS4CBDACHNT

CREATE VIEW I_BudgetAccountHierarchyNodeT AS
SELECT
  cast( hrrp_nodet.hryid as psm_hryid_budgetaccount preserving type ) AS BudgetAccountHierarchy,
  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
FROM hrrp_nodet
INNER JOIN I_BudgetAccountHierarchy 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_BudgetAccountHierarchy AS _Hierarchy ON BudgetAccountHierarchy = _Hierarchy.BudgetAccountHierarchy  -- association [1..*]
;