C_LglCntntMLanguageText

DDL: C_LGLCNTNTMLANGUAGETEXT SQL: CLCMLANGUAGETEXT Type: view CONSUMPTION Package: ODATA_LCM_COMMON

Language Text

C_LglCntntMLanguageText is a Consumption CDS View that provides data about "Language Text" in SAP S/4HANA. It reads from 1 data source (I_LanguageText) and exposes 5 fields with key fields Language, LanguageCode. Part of development package ODATA_LCM_COMMON.

Data Sources (1)

SourceAliasJoin Type
I_LanguageText I_LanguageText from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CLCMLANGUAGETEXT view
EndUserText.label Language Text view
ObjectModel.dataCategory #TEXT view
Analytics.dataExtraction.enabled true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey LanguageCode view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
_Language _Language
KEY LanguageCode LanguageCode Language Key
_LanguageCode _LanguageCode
LanguageName LanguageName Language Name

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 C_LglCntntMLanguageText.
-- 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: CLCMLANGUAGETEXT

CREATE VIEW C_LglCntntMLanguageText AS
SELECT
  Language,
  LanguageCode,
  LanguageName
FROM I_LanguageText
;