C_GLAccountHierarchyNodeT
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.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| C_GLAccountHierarchyNode | _Node | inner |
| I_GLAccountHierarchyNodeT | _Text | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | C_GLAccountHierarchyNode | _GLAccountHierarchyNode | $projection.GLAccountHierarchy = _GLAccountHierarchyNode.GLAccountHierarchy and $projection.HierarchyNode = _GLAccountHierarchyNode.HierarchyNode and $projection.ValidityEndDate = _GLAccountHierarchyNode.ValidityEndDate |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"C_GLACCOUNTHIERARCHYNODE",
"I_GLACCOUNTHIERARCHYNODET"
],
"ASSOCIATED":
[
"C_GLACCOUNTHIERARCHYNODE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA