A_GLAccountText

DDL: A_GLACCOUNTTEXT SQL: AFIGLACCOUNTT Type: view BASIC

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.

Data Sources (1)

SourceAliasJoin Type
I_GLAccountText I_GLAccountText from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_GLAccountInChartOfAccounts _GLAccountInChartOfAccounts $projection.ChartOfAccounts = _GLAccountInChartOfAccounts.ChartOfAccounts and $projection.GLAccount = _GLAccountInChartOfAccounts.GLAccount

Annotations (12)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
KEY ChartOfAccounts ChartOfAccounts Node Class
KEY GLAccount GLAccount General Ledger
KEY Language Language Report Text Language
GLAccountName GLAccountName Short Text
GLAccountLongName GLAccountLongName Long Text
LastChangeDateTime LastChangeDateTime Timestamp
_GLAccountInChartOfAccounts _GLAccountInChartOfAccounts

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view A_GLAccountText.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: AFIGLACCOUNTT

CREATE VIEW A_GLAccountText AS
SELECT
  ChartOfAccounts,
  GLAccount,
  Language,
  GLAccountName,
  GLAccountLongName,
  LastChangeDateTime
FROM I_GLAccountText
LEFT OUTER JOIN A_GLAccountInChartOfAccounts AS _GLAccountInChartOfAccounts ON ChartOfAccounts = _GLAccountInChartOfAccounts.ChartOfAccounts AND GLAccount = _GLAccountInChartOfAccounts.GLAccount  -- association [1..1]
;