I_ClassText
Class Description Text
I_ClassText is a Basic CDS View that provides data about "Class Description Text" in SAP S/4HANA. It reads from 1 data source (swor) and exposes 5 fields with key fields ClassInternalID, Language. It has 2 associations to related views. Part of development package VDM_LO_CLF.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| swor | swor | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [1..1] | I_ClassHeader | _ClassHeader | $projection.ClassInternalID = _ClassHeader.ClassInternalID |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICLASSTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Class Description Text | view | |
| ObjectModel.representativeKey | ClassInternalID | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.status | #DEPRECATED | view | |
| VDM.lifecycle.successor | I_ClfnClassDescription | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ClassInternalID | clint | ||
| KEY | Language | spras | ||
| ClassDescription | kschl | |||
| _Language | _Language | |||
| _ClassHeader | _ClassHeader |
@AbapCatalog.sqlViewName: 'ICLASSTEXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Class Description Text'
@ObjectModel.representativeKey: 'ClassInternalID'
@ObjectModel.semanticKey: [ 'ClassInternalID' ]
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@VDM.lifecycle.status: #DEPRECATED
@VDM.lifecycle.successor: 'I_ClfnClassDescription'
define view I_ClassText
as select from swor
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [1..1] to I_ClassHeader as _ClassHeader on $projection.ClassInternalID = _ClassHeader.ClassInternalID
{
@ObjectModel.foreignKey.association: '_ClassHeader'
key clint as ClassInternalID,
@Semantics.language
@ObjectModel.foreignKey.association: '_Language'
key spras as Language,
@Semantics.text: true
kschl as ClassDescription,
/* Associations */
_Language,
_ClassHeader
}
where
klpos = '01';
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