I_CmmdtyMtmMessage

DDL: I_CMMDTYMTMMESSAGE SQL: IMTMMESSAGE Type: view BASIC

Messages relevant for MTM

I_CmmdtyMtmMessage (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

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.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentLO-CMM-BF
CapabilitiesData Source in SQL Select
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
t100 t100 from

Annotations (13)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
KEY SystemMessageNumber msgnr Message number
KEY Language sprsl Language Code
SystemMessageText text Message Text

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_CmmdtyMtmMessage.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IMTMMESSAGE

CREATE VIEW I_CmmdtyMtmMessage AS
SELECT
  msgnr AS SystemMessageNumber,
  sprsl AS Language,
  text AS SystemMessageText
FROM t100
;