A_ChartOfAccountsText

DDL: A_CHARTOFACCOUNTSTEXT SQL: AFICHOFACCT Type: view BASIC

API Chart Of Accounts Text

A_ChartOfAccountsText is a Basic CDS View that provides data about "API Chart Of Accounts Text" in SAP S/4HANA. It reads from 1 data source (I_ChartOfAccountsText) and exposes 4 fields with key fields ChartOfAccounts, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ChartOfAccountsText I_ChartOfAccountsText from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_ChartOfAccounts _ChartOfAccounts $projection.ChartOfAccounts = _ChartOfAccounts.ChartOfAccounts

Annotations (12)

NameValueLevelField
EndUserText.label API Chart Of Accounts Text view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.sqlViewName AFICHOFACCT view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ChartOfAccounts ChartOfAccounts Node Class
KEY Language Language Report Text Language
ChartOfAccountsName ChartOfAccountsName Description
_ChartOfAccounts _ChartOfAccounts

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_ChartOfAccountsText.
-- 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: AFICHOFACCT

CREATE VIEW A_ChartOfAccountsText AS
SELECT
  ChartOfAccounts,
  Language,
  ChartOfAccountsName
FROM I_ChartOfAccountsText
LEFT OUTER JOIN A_ChartOfAccounts AS _ChartOfAccounts ON ChartOfAccounts = _ChartOfAccounts.ChartOfAccounts  -- association [1..1]
;