CIC_LanguageRegion
CIC Projection on Language Key
CIC_LanguageRegion is a CDS View that provides data about "CIC Projection on Language Key" in SAP S/4HANA. It reads from 2 data sources (t002, t002x) and exposes 4 fields with key fields Language, LanguageCode.
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| EndUserText.label | CIC Projection on Language Key | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view |
@ObjectModel: {
usageType: {
dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #M
}
}
@EndUserText.label: 'CIC Projection on Language Key'
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view entity CIC_LanguageRegion as select from t002x as LanguageKey
inner join t002 as Language on LanguageKey.laiso = Language.laiso
{
key Language.spras as Language,
key Language.laiso as LanguageCode,
LanguageKey.country as Country,
LanguageKey.iso2 as IsoCode,
case
when LanguageKey.country = ''
then cast ( LanguageKey.iso2 as char2 preserving type )
else
cast ( CONCAT( CONCAT( LanguageKey.iso2 ,'-'), LanguageKey.country ) as char5 preserving type )
end as iso2_country
}
where LanguageKey.iso2 is not initial
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T002",
"T002X"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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