A_CnsldtnChartOfAccountsT

DDL: A_CNSLDTNCHARTOFACCOUNTST SQL: ACSCHTACCTST Type: view BASIC

Consolidation Chart of Accounts Text

A_CnsldtnChartOfAccountsT is a Basic CDS View that provides data about "Consolidation Chart of Accounts Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnChartOfAccountsT) and exposes 4 fields with key fields ConsolidationChartOfAccounts, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnChartOfAccountsT I_CnsldtnChartOfAccountsT from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_CnsldtnChartOfAccounts _CnsldtnChartOfAccounts $projection.ConsolidationChartOfAccounts = _CnsldtnChartOfAccounts.ConsolidationChartOfAccounts

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ACSCHTACCTST view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Consolidation Chart of Accounts Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ConsolidationChartOfAccounts view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
OData.entitySet.name ConsolidationChtAcctsText view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationChartOfAccounts Cons. COA
KEY Language Language Report Text Language
ConsolidationChartOfAcctsText Description
_CnsldtnChartOfAccounts _CnsldtnChartOfAccounts

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_CnsldtnChartOfAccountsT.
-- 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: ACSCHTACCTST

CREATE VIEW A_CnsldtnChartOfAccountsT AS
SELECT
  cast(ConsolidationChartOfAccounts as fincs_itcoa preserving type ) AS ConsolidationChartOfAccounts,
  Language,
  cast(ConsolidationChartOfAcctsText as fincs_itcoa_t preserving type ) AS ConsolidationChartOfAcctsText
FROM I_CnsldtnChartOfAccountsT
LEFT OUTER JOIN A_CnsldtnChartOfAccounts AS _CnsldtnChartOfAccounts ON ConsolidationChartOfAccounts = _CnsldtnChartOfAccounts.ConsolidationChartOfAccounts  -- association [0..1]
;