I_CFD_Language
I_CFD_Language is a CDS View 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 |
|---|---|---|---|
| [1..*] | I_CFD_LanguageText | _Text | $projection.Language = _Text.LanguageCode |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICFDLANGUAGE | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | spras | ||
| LanguageISOCode | laiso | |||
| _Text | _Text |
//copied from package VDM_FND in sSUITE Dev System
@AbapCatalog.sqlViewName: 'ICFDLANGUAGE'
@AccessControl.authorizationCheck: #NOT_ALLOWED
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
define view I_CFD_Language as select from t002
association [1..*] to I_CFD_LanguageText as _Text on $projection.Language = _Text.LanguageCode
{
key spras as Language,
laiso as LanguageISOCode,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T002"
],
"ASSOCIATED":
[
"I_CFD_LANGUAGETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"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