I_GLAccountHierarchyNodeT
G/L Account Hierarchy Node - Text
I_GLAccountHierarchyNodeT is a Basic CDS View that provides data about "G/L Account Hierarchy Node - Text" in SAP S/4HANA. It reads from 1 data source (hrrp_nodet_n) and exposes 9 fields with key fields GLAccountHierarchy, HierarchyNode, ValidityEndDate, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| hrrp_nodet_n | hrrp_nodet_n | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [0..*] | I_GLAccountHierarchy | _Hierarchy | $projection.GLAccountHierarchy = _Hierarchy.GLAccountHierarchy |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| ObjectModel.representativeKey | HierarchyNode | view | |
| EndUserText.label | G/L Account Hierarchy Node - Text | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | IFIGLACCOUNTHNT | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AbapCatalog.buffering.status | #NOT_ALLOWED | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | GLAccountHierarchy | |||
| KEY | HierarchyNode | hrrp_nodet_n | hrynode | |
| KEY | ValidityEndDate | hrrp_nodet_n | hryvalto | |
| KEY | Language | hrrp_nodet_n | spras | |
| HierarchyNodeText | hrrp_nodet_n | nodetxt | ||
| HierarchyNodeShortText | ||||
| ValidityStartDate | hrrp_nodet_n | hryvalfrom | ||
| _Language | _Language | |||
| _Hierarchy | _Hierarchy |
@ObjectModel.representativeKey: 'HierarchyNode'
@EndUserText.label: 'G/L Account Hierarchy Node - Text'
@Analytics: { dataExtraction.enabled: true}
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IFIGLACCOUNTHNT'
@ObjectModel.dataCategory: #TEXT
@AccessControl.authorizationCheck: #CHECK
@AbapCatalog.buffering.status: #NOT_ALLOWED
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.supportedCapabilities:[#CDS_MODELING_DATA_SOURCE,#LANGUAGE_DEPENDENT_TEXT,#EXTRACTION_DATA_SOURCE]
define view I_GLAccountHierarchyNodeT
as select from hrrp_nodet_n
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [0..*] to I_GLAccountHierarchy as _Hierarchy on $projection.GLAccountHierarchy = _Hierarchy.GLAccountHierarchy
{
@ObjectModel.foreignKey.association: '_Hierarchy'
key cast ( hrrp_nodet_n.hryid_42 as fis_glaccthier preserving type ) as GLAccountHierarchy,
@ObjectModel.text.element: 'HierarchyNodeText'
key hrrp_nodet_n.hrynode as HierarchyNode,
@Semantics.businessDate.to: true
key hrrp_nodet_n.hryvalto as ValidityEndDate,
@Semantics.language: true
key hrrp_nodet_n.spras as Language,
@Semantics.text: true
hrrp_nodet_n.nodetxt as HierarchyNodeText,
@Semantics.text: true
substring(hrrp_nodet_n.nodetxt, 1, 20) as HierarchyNodeShortText,
@Semantics.businessDate.from: true
hrrp_nodet_n.hryvalfrom as ValidityStartDate,
_Language,
_Hierarchy
}
where
hrrp_nodet_n.hrytyp = 'FSVN';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"HRRP_NODET_N"
],
"ASSOCIATED":
[
"I_GLACCOUNTHIERARCHY",
"I_LANGUAGE"
],
"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