I_GLAcctTxtInMaintLang

DDL: I_GLACCTTXTINMAINTLANG SQL: IGLATIML Type: view BASIC

G/L Account Text in Maintenance Language

I_GLAcctTxtInMaintLang is a Basic CDS View that provides data about "G/L Account Text in Maintenance Language" in SAP S/4HANA. It reads from 1 data source (P_GLAcctTxtInMaintLang) and exposes 7 fields with key fields ChartOfAccounts, GLAccount. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
P_GLAcctTxtInMaintLang P_GLAcctTxtInMaintLang from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_ChartOfAccountsText _ChartOfAccountsText $projection.ChartOfAccounts = _ChartOfAccountsText.ChartOfAccounts
[0..1] I_ChartOfAccounts _ChartOfAccounts $projection.ChartOfAccounts = _ChartOfAccounts.ChartOfAccounts

Annotations (10)

NameValueLevelField
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IGLATIML view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label G/L Account Text in Maintenance Language view
ObjectModel.representativeKey GLAccount view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ChartOfAccounts ChartOfAccounts Node Class
KEY GLAccount GLAccount General Ledger
GLAccountName GLAccountName Short Text
GLAccountLongName GLAccountLongName Long Text
Language Language Report Text Language
_ChartOfAccounts _ChartOfAccounts
_ChartOfAccountsText _ChartOfAccountsText

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 I_GLAcctTxtInMaintLang.
-- 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: IGLATIML

CREATE VIEW I_GLAcctTxtInMaintLang AS
SELECT
  ChartOfAccounts,
  GLAccount,
  GLAccountName,
  GLAccountLongName,
  Language
FROM P_GLAcctTxtInMaintLang
LEFT OUTER JOIN I_ChartOfAccountsText AS _ChartOfAccountsText ON ChartOfAccounts = _ChartOfAccountsText.ChartOfAccounts  -- association [0..*]
LEFT OUTER JOIN I_ChartOfAccounts AS _ChartOfAccounts ON ChartOfAccounts = _ChartOfAccounts.ChartOfAccounts  -- association [0..1]
;