I_CASystemMessageLastChangedBy

DDL: I_CASYSTEMMESSAGELASTCHANGEDBY Type: view_entity BASIC Package: FKKINV_VDM_UTILS

Letzter Änderer einer Systemnachricht

I_CASystemMessageLastChangedBy is a Basic CDS View that provides data about "Letzter Änderer einer Systemnachricht" in SAP S/4HANA. It reads from 1 data source (t100u) and exposes 3 fields with key fields SystemMessageClass, SystemMessageNumber. Part of development package FKKINV_VDM_UTILS.

Data Sources (1)

SourceAliasJoin Type
t100u t100u from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Letzter Änderer einer Systemnachricht view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #META view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SystemMessageClass arbgb Message ID
KEY SystemMessageNumber msgnr Message
SystemMessageNoLongText selfdef Docu status

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_CASystemMessageLastChangedBy.
-- 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.

CREATE VIEW I_CASystemMessageLastChangedBy AS
SELECT
  arbgb AS SystemMessageClass,
  msgnr AS SystemMessageNumber,
  selfdef AS SystemMessageNoLongText
FROM t100u
;