I_MDOLanguageCode
Language codes
I_MDOLanguageCode is a CDS View that provides data about "Language codes" in SAP S/4HANA. It reads from 2 data sources (t002, t002t) and exposes 3 fields with key field SapLanguageCode.
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMDOLANGUAGECODE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Language codes | view |
@AbapCatalog.sqlViewName: 'IMDOLANGUAGECODE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Language codes'
define view I_MDOLanguageCode as select from t002 as code
left outer join t002t as text on text.sprsl = code.spras and text.spras = $session.system_language
{
// currently we have only 1 character SAP code in $session.system_language for displaying right language text
key code.spras as SapLanguageCode,
code.laiso as IsoLanguageCode,
text.sptxt as Text
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA