A_GLAccountText
API General Ledger Account Text
A_GLAccountText is a Basic CDS View that provides data about "API General Ledger Account Text" in SAP S/4HANA. It reads from 1 data source (I_GLAccountText) and exposes 7 fields with key fields ChartOfAccounts, GLAccount, Language. It has 1 association to related views. Part of development package FINS_FIS_API.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_GLAccountText | I_GLAccountText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | A_GLAccountInChartOfAccounts | _GLAccountInChartOfAccounts | $projection.ChartOfAccounts = _GLAccountInChartOfAccounts.ChartOfAccounts and $projection.GLAccount = _GLAccountInChartOfAccounts.GLAccount |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | API General Ledger Account Text | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| AbapCatalog.sqlViewName | AFIGLACCOUNTT | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ChartOfAccounts | ChartOfAccounts | ||
| KEY | GLAccount | GLAccount | ||
| KEY | Language | Language | ||
| GLAccountName | GLAccountName | |||
| GLAccountLongName | GLAccountLongName | |||
| LastChangeDateTime | LastChangeDateTime | |||
| _GLAccountInChartOfAccounts | _GLAccountInChartOfAccounts |
@EndUserText.label: 'API General Ledger Account Text'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type:#PUBLIC_REMOTE_API
@AbapCatalog.sqlViewName: 'AFIGLACCOUNTT'
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #B
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #CHECK
// A-view annotations
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
define view A_GLAccountText
as select from I_GLAccountText
association [1..1] to A_GLAccountInChartOfAccounts as _GLAccountInChartOfAccounts on $projection.ChartOfAccounts = _GLAccountInChartOfAccounts.ChartOfAccounts
and $projection.GLAccount = _GLAccountInChartOfAccounts.GLAccount
{
//I_GLAccountText
key ChartOfAccounts,
key GLAccount,
key Language,
GLAccountName,
GLAccountLongName,
LastChangeDateTime,
/* Associations */
//A_GLAccountInChartOfAccounts
_GLAccountInChartOfAccounts
}
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