I_LanguageText

DDL: I_LANGUAGETEXT SQL: ILANGUAGETEXT Type: view BASIC

Language Text

I_LanguageText (Basic)

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

Cross Applications

I_LanguageText is a Basic CDS View that provides data about "Language Text" in SAP S/4HANA. It reads from 1 data source (t002t) and exposes 5 fields with key fields Language, LanguageCode.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentBC-DOC-TTL
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
t002t t002t from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ILANGUAGETEXT view
EndUserText.label Language Text view
ObjectModel.dataCategory #TEXT view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
ObjectModel.representativeKey LanguageCode view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #B view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language spras Off. Language
_Language _Language
KEY LanguageCode sprsl Language Code
_LanguageCode _LanguageCode
LanguageName sptxt Name of 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_LanguageText.
-- 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: ILANGUAGETEXT

CREATE VIEW I_LanguageText AS
SELECT
  spras AS Language,
  sprsl AS LanguageCode,
  sptxt AS LanguageName
FROM t002t
;