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. Part of development package CIC_COMMON.
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| EndUserText.label | CIC Projection on Language Key | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view |
@ObjectModel: {
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #X,
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,
cast (
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 cic_language_region preserving type )
as iso2_country
}
where
LanguageKey.iso2 is not initial
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