I_Relclassstatus
Manage Class Status Basic View
I_Relclassstatus is a Basic CDS View that provides data about "Manage Class Status Basic View" in SAP S/4HANA. It reads from 1 data source (tclu) and exposes 4 fields with key fields ClassTypeName, OriginalStatusText. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tclu | tclu | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | I_Relclassstatustext | _Text | $projection.OriginalStatusText = _Text.OriginalStatusText association[1..1] to I_Relclasstype as _ClassType on $projection.ClassTypeName = _ClassType.ClassTypeName |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IRELCLASSSTATUS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Manage Class Status Basic View | view | |
| ObjectModel.representativeKey | OriginalStatusText | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ClassTypeName | klart | ||
| KEY | OriginalStatusText | status | ||
| _Text | _Text | |||
| _ClassType | _ClassType |
@AbapCatalog.sqlViewName: 'IRELCLASSSTATUS'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Manage Class Status Basic View'
@ObjectModel.representativeKey: 'OriginalStatusText'
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality:#A
@ObjectModel.usageType.sizeCategory:#M
@ObjectModel.usageType.dataClass:#CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
define view I_Relclassstatus
as select from tclu
association [1..*] to I_Relclassstatustext as _Text on $projection.OriginalStatusText = _Text.OriginalStatusText
association[1..1] to I_Relclasstype as _ClassType on $projection.ClassTypeName = _ClassType.ClassTypeName
{
@ObjectModel.foreignKey.association: '_ClassType'
key klart as ClassTypeName,
@ObjectModel.text.association: '_Text'
key status as OriginalStatusText,
_Text,
_ClassType
}
where klart = '032'
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