A_CnsldtnGLAccountT

DDL: A_CNSLDTNGLACCOUNTT Type: view COMPOSITE Package: FIN_CS_MD_API

Combined G/L Account - Text

A_CnsldtnGLAccountT is a Composite CDS View that provides data about "Combined G/L Account - Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnGLAccountT_2) and exposes 6 fields with key fields Language, GLAccount, ChartOfAccounts. It has 2 associations to related views. It is exposed through 5 OData services (ASQL_F7093, ASQL_F7094, ASQL_F7095, ...). Part of development package FIN_CS_MD_API.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnGLAccountT_2 I_CnsldtnGLAccountT_2 from

Associations (2)

CardinalityTargetAliasCondition
[0..1] A_CnsldtnGLAccount _CnsldtnGLAccount $projection.GLAccount = _CnsldtnGLAccount.GLAccount and $projection.ChartOfAccounts = _CnsldtnGLAccount.ChartOfAccounts
[0..1] A_CnsldtnGLChartOfAccounts _CnsldtnGLChartOfAccounts $projection.ChartOfAccounts = _CnsldtnGLChartOfAccounts.ChartOfAccounts

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ACSGLACCOUNTT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.representativeKey GLAccount view
ObjectModel.dataCategory #TEXT view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Combined G/L Account - Text view
OData.entitySet.name GLAccountText view

OData Services (5)

ServiceBindingVersionContractRelease
ASQL_F7093 ASQL_F7093 C2 NOT_RELEASED
ASQL_F7094 ASQL_F7094 C2 NOT_RELEASED
ASQL_F7095 ASQL_F7095 C2 NOT_RELEASED
ASQL_F7096 ASQL_F7096 C2 NOT_RELEASED
ASQL_F7867 ASQL_F7867 C2 NOT_RELEASED

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
KEY GLAccount General Ledger
KEY ChartOfAccounts Node Class
GLAccountText Short Text
_CnsldtnGLAccount _CnsldtnGLAccount
_CnsldtnGLChartOfAccounts _CnsldtnGLChartOfAccounts

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_CnsldtnGLAccountT.
-- 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.

CREATE VIEW A_CnsldtnGLAccountT AS
SELECT
  Language,
  cast(GLAccount as saknr preserving type ) AS GLAccount,
  cast(ChartOfAccounts as ktopl preserving type ) AS ChartOfAccounts,
  cast(GLAccountName as fincs_racct_t preserving type) AS GLAccountText
FROM I_CnsldtnGLAccountT_2
LEFT OUTER JOIN A_CnsldtnGLAccount AS _CnsldtnGLAccount ON GLAccount = _CnsldtnGLAccount.GLAccount AND ChartOfAccounts = _CnsldtnGLAccount.ChartOfAccounts  -- association [0..1]
LEFT OUTER JOIN A_CnsldtnGLChartOfAccounts AS _CnsldtnGLChartOfAccounts ON ChartOfAccounts = _CnsldtnGLChartOfAccounts.ChartOfAccounts  -- association [0..1]
;