I_CASystemMessage
Systemnachricht
I_CASystemMessage is a Basic CDS View that provides data about "Systemnachricht" in SAP S/4HANA. It reads from 1 data source (t100) and exposes 5 fields with key fields Language, SystemMessageClass, SystemMessageNumber. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t100 | t100 | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_CASystemMessageLastChangedBy | _CASystemMessageLastChangedBy | _CASystemMessageLastChangedBy.SystemMessageClass = $projection.SystemMessageClass and _CASystemMessageLastChangedBy.SystemMessageNumber = $projection.SystemMessageNumber |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Systemnachricht | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| VDM.viewType | #BASIC | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | sprsl | ||
| KEY | SystemMessageClass | arbgb | ||
| KEY | SystemMessageNumber | msgnr | ||
| SystemMessageText | text | |||
| SystemMessageNoLongText | _CASystemMessageLastChangedBy | SystemMessageNoLongText |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Systemnachricht'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #META
@VDM.viewType: #BASIC
define view entity I_CASystemMessage
as select from t100
association [0..1] to I_CASystemMessageLastChangedBy as _CASystemMessageLastChangedBy on _CASystemMessageLastChangedBy.SystemMessageClass = $projection.SystemMessageClass
and _CASystemMessageLastChangedBy.SystemMessageNumber = $projection.SystemMessageNumber
{
key sprsl as Language,
key arbgb as SystemMessageClass,
key msgnr as SystemMessageNumber,
text as SystemMessageText,
_CASystemMessageLastChangedBy.SystemMessageNoLongText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CASYSTEMMESSAGELASTCHANGEDBY",
"T100"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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