FCCX_EXEC_MESSAGE

DDL: FCCX_EXEC_MESSAGE Type: view_entity

Message from execution

FCCX_EXEC_MESSAGE is a CDS View that provides data about "Message from execution" in SAP S/4HANA. It reads from 1 data source (FCCX_EXEC_MESSAGE_UNION) and exposes 19 fields with key field ID.

Data Sources (1)

SourceAliasJoin Type
FCCX_EXEC_MESSAGE_UNION m from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Message from execution view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (19)

KeyFieldSource TableSource FieldDescription
KEY ID FCCX_EXEC_MESSAGE_UNION msguuid UUID
ClosingTaskExecutionUUID FCCX_EXEC_MESSAGE_UNION execuuid UUID
SystemMessageType FCCX_EXEC_MESSAGE_UNION msgty Msg.Type (E,I,W..)
SystemMessageIdentification FCCX_EXEC_MESSAGE_UNION msgid Message ID
SystemMessageNumber FCCX_EXEC_MESSAGE_UNION msgno Message Number
SystemMessageVariable1 FCCX_EXEC_MESSAGE_UNION msgv1 Message variable 1
SystemMessageVariable2 FCCX_EXEC_MESSAGE_UNION msgv2 Message variable 2
SystemMessageVariable3 FCCX_EXEC_MESSAGE_UNION msgv3 Message variable 3
SystemMessageVariable4 FCCX_EXEC_MESSAGE_UNION msgv4 Message variable 4
SystemMessageText t text User Group
Language t sprsl Language Code
ClosingTaskExecutionLogType FCCX_EXEC_MESSAGE_UNION result_type Result Type
ClosingTaskExecutionResultUUID FCCX_EXEC_MESSAGE_UNION result_uuid UUID
ApplicationLog FCCX_EXEC_MESSAGE_UNION lognumber UUID
ApplicationLogObject FCCX_EXEC_MESSAGE_UNION object TRFM Object
ApplicationLogSubObject FCCX_EXEC_MESSAGE_UNION subobject Triggering obj.
CreationAtDateTime FCCX_EXEC_MESSAGE_UNION created_on Variant created on
CreatedBy FCCX_EXEC_MESSAGE_UNION created_by Version Created By
MessageCount FCCX_EXEC_MESSAGE_UNION msg_count INT4

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 FCCX_EXEC_MESSAGE.
-- 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 FCCX_EXEC_MESSAGE AS
SELECT
  m.msguuid AS ID,
  m.execuuid AS ClosingTaskExecutionUUID,
  m.msgty AS SystemMessageType,
  m.msgid AS SystemMessageIdentification,
  m.msgno AS SystemMessageNumber,
  m.msgv1 AS SystemMessageVariable1,
  m.msgv2 AS SystemMessageVariable2,
  m.msgv3 AS SystemMessageVariable3,
  m.msgv4 AS SystemMessageVariable4,
  t.text AS SystemMessageText,
  t.sprsl AS Language,
  m.result_type AS ClosingTaskExecutionLogType,
  m.result_uuid AS ClosingTaskExecutionResultUUID,
  m.lognumber AS ApplicationLog,
  m.object AS ApplicationLogObject,
  m.subobject AS ApplicationLogSubObject,
  m.created_on AS CreationAtDateTime,
  m.created_by AS CreatedBy,
  m.msg_count AS MessageCount
FROM FCCX_EXEC_MESSAGE_UNION AS m
;