I_Language
Language
I_Language is a Basic CDS View (Dimension) that provides data about "Language" 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)
| Source | Alias | Join Type |
|---|---|---|
| t002 | t002 | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_LanguageText | _Text | $projection.Language = _Text.LanguageCode |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ILanguage | view | |
| EndUserText.label | Language | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | Language | view | |
| Search.searchable | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | spras | ||
| _Text | _Text | |||
| LanguageISOCode | laiso |
@AbapCatalog.sqlViewName: 'ILanguage'
@EndUserText.label: 'Language'
@Analytics : {dataCategory: #DIMENSION, dataExtraction.enabled : true}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'Language'
@Search.searchable: true
define view I_Language as select from t002
association [0..*] to I_LanguageText as _Text
on $projection.Language = _Text.LanguageCode
{
@ObjectModel.text.association: '_Text'
key spras as Language,
_Text,
@Search.defaultSearchElement: true
laiso as LanguageISOCode
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T002"
],
"ASSOCIATED":
[
"I_LANGUAGETEXT"
],
"BASE":
[],
"VERSION":0
}
}*/
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