I_CFD_Language

DDL: I_CFD_LANGUAGE SQL: ICFDLANGUAGE Type: view

I_CFD_Language is a CDS View in SAP S/4HANA. It reads from 1 data source (t002) and exposes 3 fields with key field Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t002 t002 from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_CFD_LanguageText _Text $projection.Language = _Text.LanguageCode

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName ICFDLANGUAGE view
AccessControl.authorizationCheck #NOT_ALLOWED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language spras Off. Language
LanguageISOCode laiso Language Code
_Text _Text

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_CFD_Language.
-- 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: ICFDLANGUAGE

CREATE VIEW I_CFD_Language AS
SELECT
  spras AS Language,
  laiso AS LanguageISOCode
FROM t002
LEFT OUTER JOIN I_CFD_LanguageText AS _Text ON Language = _Text.LanguageCode  -- association [1..*]
;