I_CmmdtyMtmMessage
Messages relevant for MTM
I_CmmdtyMtmMessage is a Basic CDS View (Dimension) that provides data about "Messages relevant for MTM" in SAP S/4HANA. It reads from 1 data source (t100) and exposes 3 fields with key fields SystemMessageNumber, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t100 | t100 | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMTMMESSAGE | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | SystemMessageNumber | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Messages relevant for MTM | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SystemMessageNumber | msgnr | ||
| KEY | Language | sprsl | ||
| SystemMessageText | text |
@AbapCatalog.sqlViewName: 'IMTMMESSAGE'
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'SystemMessageNumber'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@EndUserText.label: 'Messages relevant for MTM'
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #META
@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE]
@Metadata.ignorePropagatedAnnotations:true
define view I_CmmdtyMtmMessage as select from t100
{
key msgnr as SystemMessageNumber,
@Semantics.language: true
key sprsl as Language,
@Semantics.text: true
text as SystemMessageText
}
where arbgb = 'CMM_MTMCDS'
and sprsl = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T100"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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