A_CnsldtnGLChartOfAccountsT

DDL: A_CNSLDTNGLCHARTOFACCOUNTST Type: view COMPOSITE

Combined G/L Chart of Accounts - Text

A_CnsldtnGLChartOfAccountsT is a Composite CDS View that provides data about "Combined G/L Chart of Accounts - Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnGLChartOfAccountsT) and exposes 4 fields with key fields Language, ChartOfAccounts. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnGLChartOfAccountsT I_CnsldtnGLChartOfAccountsT from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_CnsldtnGLChartOfAccounts _CnsldtnGLChartOfAccounts $projection.ChartOfAccounts = _CnsldtnGLChartOfAccounts.ChartOfAccounts

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ACSGLCHTACCTST 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.dataCategory #TEXT view
ObjectModel.representativeKey ChartOfAccounts view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Combined G/L Chart of Accounts - Text view
OData.entitySet.name ChartOfAccountsText view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
KEY ChartOfAccounts Node Class
ChartOfAccountsText Description
_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_CnsldtnGLChartOfAccountsT.
-- 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_CnsldtnGLChartOfAccountsT AS
SELECT
  Language,
  cast(ChartOfAccounts as fincs_ktopl preserving type) AS ChartOfAccounts,
  cast(ChartOfAccountsName as fincs_ktopl_t preserving type) AS ChartOfAccountsText
FROM I_CnsldtnGLChartOfAccountsT
LEFT OUTER JOIN A_CnsldtnGLChartOfAccounts AS _CnsldtnGLChartOfAccounts ON ChartOfAccounts = _CnsldtnGLChartOfAccounts.ChartOfAccounts  -- association [0..1]
;