C_CurGLAcctHierNodeVH

DDL: C_CURGLACCTHIERNODEVH Type: view_entity CONSUMPTION Package: FINS_FI_HIERARCHY_VH

Current GL Account - Hierarchy Node

C_CurGLAcctHierNodeVH is a Consumption CDS View that provides data about "Current GL Account - Hierarchy Node" in SAP S/4HANA. It reads from 1 data source (I_CurGLAcctHierarchyNodeVH) and exposes 12 fields with key fields HierarchyNode, GLAccountHierarchy. Part of development package FINS_FI_HIERARCHY_VH.

Data Sources (1)

SourceAliasJoin Type
I_CurGLAcctHierarchyNodeVH I_CurGLAcctHierarchyNodeVH projection

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Current GL Account - Hierarchy Node view
ObjectModel.representativeKey HierarchyNode view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.modelingPattern #TRANSACTIONAL_QUERY view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
VDM.viewType #CONSUMPTION view
AccessControl.personalData.blocking #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY HierarchyNode HierarchyNode Node
KEY GLAccountHierarchy GLAccountHierarchy
ValidityEndDate ValidityEndDate ValidTo
ChartOfAccounts ChartOfAccounts Node Class
ParentNode ParentNode Parent Node
ValidityStartDate ValidityStartDate Validity Start Date
GLAccount GLAccount General Ledger
HierarchyNodeSequence HierarchyNodeSequence
HierarchyNodeLevel HierarchyNodeLevel Hierarchy Node Level
NodeType NodeType Object Type
HierarchyNodeVal HierarchyNodeVal
HierarchyNodeText

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 C_CurGLAcctHierNodeVH.
-- 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 C_CurGLAcctHierNodeVH AS
SELECT
  HierarchyNode,
  GLAccountHierarchy,
  ValidityEndDate,
  ChartOfAccounts,
  ParentNode,
  ValidityStartDate,
  GLAccount,
  HierarchyNodeSequence,
  HierarchyNodeLevel,
  NodeType,
  HierarchyNodeVal,
  _Text[1:Language = $session.system_language].HierarchyNodeText AS HierarchyNodeText
FROM I_CurGLAcctHierarchyNodeVH
;