I_Distinctlanguageinchtaccts

DDL: I_DISTINCTLANGUAGEINCHTACCTS SQL: IDLINCOA Type: view BASIC

Language in Chart of Accounts

I_Distinctlanguageinchtaccts is a Basic CDS View that provides data about "Language in Chart of Accounts" in SAP S/4HANA. It reads from 3 data sources (I_ChartOfAccounts, I_Language, P_Distinctlanguageinchtaccts) and exposes 4 fields with key fields ChartOfAccounts, Language, Language. It has 1 association to related views.

Data Sources (3)

SourceAliasJoin Type
I_ChartOfAccounts I_ChartOfAccounts union
I_Language i_language inner
P_Distinctlanguageinchtaccts p_language from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (10)

NameValueLevelField
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName IDLINCOA view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
EndUserText.label Language in Chart of Accounts view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ChartOfAccounts P_Distinctlanguageinchtaccts ChartOfAccounts Node Class
KEY Language P_Distinctlanguageinchtaccts Language Maint. Language
KEY Language MaintenanceLanguage Maint. Language
_Language _Language

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_Distinctlanguageinchtaccts.
-- 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: IDLINCOA

CREATE VIEW I_Distinctlanguageinchtaccts AS
SELECT
  p_language.ChartOfAccounts AS ChartOfAccounts,
  p_language.Language AS Language
FROM P_Distinctlanguageinchtaccts AS p_language
INNER JOIN I_Language AS i_language ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
-- UNION with additional select branch(es): I_ChartOfAccounts
;