I_GLAccountHierarchyText
G/L Account Hierarchy - Text
I_GLAccountHierarchyText is a Basic CDS View that provides data about "G/L Account Hierarchy - Text" in SAP S/4HANA. It reads from 1 data source (hrrp_dirt_n) and exposes 6 fields with key fields GLAccountHierarchy, ValidityEndDate, Language. It has 1 association to related views. Part of development package FINS_GL_ACCOUNT_HIER.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| hrrp_dirt_n | hrrp_dirt_n | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | G/L Account Hierarchy - Text | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | IFIGLACCOUNTHT | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | GLAccountHierarchy | 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 | |
| AccessControl.authorizationCheck | #CHECK | view | |
| Search.searchable | true | view | |
| Analytics.dataExtraction.enabled | true | view | |
| ObjectModel.sapObjectNodeType.name | GLAccountHierarchyText | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | GLAccountHierarchy | |||
| KEY | ValidityEndDate | hrrp_dirt_n | hryvalto | |
| KEY | Language | spras | ||
| ValidityStartDate | hrrp_dirt_n | hryvalfrom | ||
| GLAccountHierarchyName | hrytxt | |||
| _Language | _Language |
@EndUserText.label: 'G/L Account Hierarchy - Text'
//@Analytics: {dataCategory: #TEXT, dataExtraction.enabled: true}
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IFIGLACCOUNTHT'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'GLAccountHierarchy'
@AbapCatalog.buffering.status: #NOT_ALLOWED
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #CHECK
@Search.searchable: true
@ObjectModel.supportedCapabilities:[#CDS_MODELING_DATA_SOURCE,#LANGUAGE_DEPENDENT_TEXT,#EXTRACTION_DATA_SOURCE]
@Analytics.dataExtraction.enabled: true
@ObjectModel.sapObjectNodeType.name:'GLAccountHierarchyText'
define view I_GLAccountHierarchyText
as select from hrrp_dirt_n
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Search.defaultSearchElement:true
key cast ( hrrp_dirt_n.hryid_42 as fis_glaccthier preserving type ) as GLAccountHierarchy,
@Semantics.businessDate.to: true
key hrrp_dirt_n.hryvalto as ValidityEndDate,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key spras as Language,
@Semantics.businessDate.from: true
hrrp_dirt_n.hryvalfrom as ValidityStartDate,
@Semantics.text: true
@Search:{ defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking:#HIGH }
hrytxt as GLAccountHierarchyName,
_Language
}
where
hrrp_dirt_n.hrytyp = 'FSVN'
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