I_DiscPremMTMMessage
Messages relevant for MTM
I_DiscPremMTMMessage 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 (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IACMMTMMESSAGE | 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 | #L | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.supportedCapabilities | #LANGUAGE_DEPENDENT_TEXT | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SystemMessageNumber | msgnr | ||
| KEY | Language | sprsl | ||
| SystemMessageText | text |
@AbapCatalog.sqlViewName: 'IACMMTMMESSAGE'
@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: #L
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.supportedCapabilities : #LANGUAGE_DEPENDENT_TEXT
define view I_DiscPremMTMMessage
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'
or arbgb = '/ACCGO/STOCK_MTM_CDS'
/*+[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