I_GLAcctHierNodeSemanticTag
GL Account Hierarchy Node with Semantic Tag
I_GLAcctHierNodeSemanticTag is a Basic CDS View that provides data about "GL Account Hierarchy Node with Semantic Tag" in SAP S/4HANA. It reads from 2 data sources (I_GLAccountHierarchy, P_SemTagNode) and exposes 5 fields.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_GLAccountHierarchy | _Hierarchy | inner |
| P_SemTagNode | P_SemTagNode | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | GL Account Hierarchy Node with Semantic Tag | view | |
| AbapCatalog.sqlViewName | IFIGLHIERNODESEM | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| GLAccountHierarchy | hryid | |||
| HierarchyNode | hrynode | |||
| ValidityEndDate | hryvalto | |||
| SemanticTag | fins_sem_tag | |||
| NodeType | nodetype |
@EndUserText.label: 'GL Account Hierarchy Node with Semantic Tag'
@AbapCatalog.sqlViewName: 'IFIGLHIERNODESEM'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
//@ObjectModel.representativeKey: 'SemanticTag'
//@VDM.private:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MIXED
define view I_GLAcctHierNodeSemanticTag
as select from P_SemTagNode
inner join I_GLAccountHierarchy as _Hierarchy on P_SemTagNode.hryid = _Hierarchy.GLAccountHierarchy
and P_SemTagNode.hryvalto = _Hierarchy.ValidityEndDate // Hierarchy directory and hierarchy nodes have the same time slice
{
//P_SemTagNode
hryid as GLAccountHierarchy,
hrynode as HierarchyNode,
hryvalto as ValidityEndDate,
fins_sem_tag as SemanticTag,
nodetype as NodeType
}
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