C_GLAccountHierarchyNodeT

DDL: C_GLACCOUNTHIERARCHYNODET SQL: CFIGLACCOUNTHNT Type: view CONSUMPTION Package: FINS_FIS_API

API GL Account Hierarchy Node Text

C_GLAccountHierarchyNodeT is a Consumption CDS View that provides data about "API GL Account Hierarchy Node Text" in SAP S/4HANA. It reads from 2 data sources (C_GLAccountHierarchyNode, I_GLAccountHierarchyNodeT) and exposes 9 fields with key fields GLAccountHierarchy, HierarchyNode, ValidityEndDate, Language. It has 1 association to related views. Part of development package FINS_FIS_API.

Data Sources (2)

SourceAliasJoin Type
C_GLAccountHierarchyNode _Node inner
I_GLAccountHierarchyNodeT _Text from

Associations (1)

CardinalityTargetAliasCondition
[1..1] C_GLAccountHierarchyNode _GLAccountHierarchyNode $projection.GLAccountHierarchy = _GLAccountHierarchyNode.GLAccountHierarchy and $projection.HierarchyNode = _GLAccountHierarchyNode.HierarchyNode and $projection.ValidityEndDate = _GLAccountHierarchyNode.ValidityEndDate

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CFIGLACCOUNTHNT view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label API GL Account Hierarchy Node Text view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
Metadata.ignorePropagatedAnnotations true view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY GLAccountHierarchy I_GLAccountHierarchyNodeT GLAccountHierarchy
KEY HierarchyNode I_GLAccountHierarchyNodeT HierarchyNode
KEY ValidityEndDate I_GLAccountHierarchyNodeT ValidityEndDate
KEY Language Language
HierarchyNodeText HierarchyNodeText
HierarchyNodeShortText HierarchyNodeShortText
ValidityStartDate I_GLAccountHierarchyNodeT ValidityStartDate
NodeType C_GLAccountHierarchyNode NodeType
_GLAccountHierarchyNode _GLAccountHierarchyNode
@AbapCatalog.sqlViewName: 'CFIGLACCOUNTHNT'
@ClientHandling.type: #CLIENT_DEPENDENT
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType:  #CONSUMPTION

@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'API GL Account Hierarchy Node Text'

@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.dataClass: #MIXED
@Metadata.ignorePropagatedAnnotations: true

define view C_GLAccountHierarchyNodeT
  as select from I_GLAccountHierarchyNodeT as _Text
    inner join   C_GLAccountHierarchyNode  as _Node on  _Text.GLAccountHierarchy = _Node.GLAccountHierarchy
                                                    and _Text.HierarchyNode      = _Node.HierarchyNode
                                                    and _Text.ValidityEndDate    = _Node.ValidityEndDate

  association [1..1] to C_GLAccountHierarchyNode as _GLAccountHierarchyNode on  $projection.GLAccountHierarchy = _GLAccountHierarchyNode.GLAccountHierarchy
                                                                            and $projection.HierarchyNode      = _GLAccountHierarchyNode.HierarchyNode
                                                                            and $projection.ValidityEndDate    = _GLAccountHierarchyNode.ValidityEndDate
{

      //I_GLAccountHierarchyNodeT

  key _Text.GLAccountHierarchy,
  key _Text.HierarchyNode,
  key _Text.ValidityEndDate,
  key Language,
      HierarchyNodeText,
      HierarchyNodeShortText,
      _Text.ValidityStartDate,
      _Node.NodeType,
      /* Associations */
      //C_GLAccountHierarchyNode

      _GLAccountHierarchyNode
}