I_ChartOfAccountsText

DDL: I_CHARTOFACCOUNTSTEXT SQL: IFICHOFACCT Type: view BASIC

Chart Of Accounts - Text

I_ChartOfAccountsText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Accounting and Financial Close

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

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-GL-GL-N
CapabilitiesData Source for Defining CDS Entities, Language-Dependent Text, Data Source for Data Extraction
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
t004t t004t from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ChartOfAccountsText _ChartOfAccountsText $projection.ChartOfAccounts = _ChartOfAccountsText.ChartOfAccounts association[0..1] to I_ChartOfAccounts as _ChartOfAccounts on $projection.ChartOfAccounts = _ChartOfAccounts.ChartOfAccounts association[0..1] to I_Language as _Language on $projection.Language = _Language.Language

Annotations (17)

NameValueLevelField
EndUserText.label Chart Of Accounts - Text view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ChartOfAccounts view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFICHOFACCT view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 1 view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ChartOfAccounts ktopl G/L Chart of Accounts
KEY Language spras Off. Language
ChartOfAccountsName ktplt Chart of Accounts Description
_ChartOfAccounts _ChartOfAccounts
_Language _Language
_ChartOfAccountsText _ChartOfAccountsText

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 I_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: IFICHOFACCT

CREATE VIEW I_ChartOfAccountsText AS
SELECT
  ktopl AS ChartOfAccounts,
  spras AS Language,
  ktplt AS ChartOfAccountsName
FROM t004t
LEFT OUTER JOIN I_ChartOfAccountsText AS _ChartOfAccountsText ON ChartOfAccounts = _ChartOfAccountsText.ChartOfAccounts association[0..1] to I_ChartOfAccounts as _ChartOfAccounts on ChartOfAccounts = _ChartOfAccounts.ChartOfAccounts association[0..1] to I_Language as _Language on Language = _Language.Language  -- association [0..*]
;