I_MKT_SystemMessage

DDL: I_MKT_SYSTEMMESSAGE SQL: IMKTT100 Type: view BASIC Package: CUAN_CDS_IMPORT_MONITOR

System Messages

I_MKT_SystemMessage is a Basic CDS View that provides data about "System Messages" in SAP S/4HANA. It reads from 1 data source (t100) and exposes 4 fields with key fields Language, SystemMessageClass, SystemMessageNumber. Part of development package CUAN_CDS_IMPORT_MONITOR.

Data Sources (1)

SourceAliasJoin Type
t100 t100 from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IMKTT100 view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label System Messages view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
ObjectModel.representativeKey SystemMessageNumber view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language t100 sprsl Language Code
KEY SystemMessageClass t100 arbgb Message ID
KEY SystemMessageNumber t100 msgnr Message
SystemMessageText t100 text User Group

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_MKT_SystemMessage.
-- 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: IMKTT100

CREATE VIEW I_MKT_SystemMessage AS
SELECT
  t100.sprsl AS Language,
  t100.arbgb AS SystemMessageClass,
  t100.msgnr AS SystemMessageNumber,
  t100.text AS SystemMessageText
FROM t100
;