APS_IAM_DPP_MSG

DDL: APS_IAM_DPP_MSG SQL: APS_IAM_DPP_MSGS Type: view Package: SCLMS_VTR_DPP_ODATA

Display Publishing Processes Messages

APS_IAM_DPP_MSG is a CDS View that provides data about "Display Publishing Processes Messages" in SAP S/4HANA. It reads from 1 data source (clms_tm_msg_log) and exposes 6 fields with key fields run_id, run_phase. Part of development package SCLMS_VTR_DPP_ODATA.

Data Sources (1)

SourceAliasJoin Type
clms_tm_msg_log clms_tm_msg_log from

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName APS_IAM_DPP_MSGS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Display Publishing Processes Messages view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY run_id run_id UUID
KEY run_phase run_phase Run Phase
job_nr job_nr Job No.
scenario_id scenario_id Workflow definition
timestamp timestamp UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
tm_messages tm_messages

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 APS_IAM_DPP_MSG.
-- 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: APS_IAM_DPP_MSGS

CREATE VIEW APS_IAM_DPP_MSG AS
SELECT
  run_id,
  run_phase,
  job_nr,
  scenario_id,
  timestamp,
  tm_messages
FROM clms_tm_msg_log
;