A_CnsldtnChartOfAccounts

DDL: A_CNSLDTNCHARTOFACCOUNTS SQL: ACSCHTACCTS Type: view BASIC

Consolidation Chart of Accounts

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

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnChartOfAccounts I_CnsldtnChartOfAccounts from

Associations (1)

CardinalityTargetAliasCondition
[0..*] A_CnsldtnChartOfAccountsT _CnsldtnChartOfAccountsT $projection.ConsolidationChartOfAccounts = _CnsldtnChartOfAccountsT.ConsolidationChartOfAccounts

Annotations (14)

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

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationChartOfAccounts ConsolidationChartOfAccounts Consolidation Chart Of Accounts
_CnsldtnChartOfAccountsT _CnsldtnChartOfAccountsT

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_CnsldtnChartOfAccounts.
-- 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: ACSCHTACCTS

CREATE VIEW A_CnsldtnChartOfAccounts AS
SELECT
  ConsolidationChartOfAccounts
FROM I_CnsldtnChartOfAccounts
LEFT OUTER JOIN A_CnsldtnChartOfAccountsT AS _CnsldtnChartOfAccountsT ON ConsolidationChartOfAccounts = _CnsldtnChartOfAccountsT.ConsolidationChartOfAccounts  -- association [0..*]
;