APS_IAM_DPP_OBJ_LIST

DDL: APS_IAM_DPP_OBJ_LIST SQL: APS_IAM_DPP_OBJL Type: view

Display Publishing Processes Objects List

APS_IAM_DPP_OBJ_LIST is a CDS View that provides data about "Display Publishing Processes Objects List" in SAP S/4HANA. It reads from 1 data source (clms_tm_obj_list) and exposes 7 fields with key fields run_id, trkorr, pgmid, object, obj_name.

Data Sources (1)

SourceAliasJoin Type
clms_tm_obj_list clms_tm_obj_list from

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName APS_IAM_DPP_OBJL view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Display Publishing Processes Objects List view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY run_id run_id UUID
KEY trkorr trkorr Virtual Transport
KEY pgmid pgmid Program Name
KEY object object TRFM Object
KEY obj_name obj_name Object Name
KEY task_list_id task_list_id Task List Run
status status Workflow 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 APS_IAM_DPP_OBJ_LIST.
-- 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_OBJL

CREATE VIEW APS_IAM_DPP_OBJ_LIST AS
SELECT
  run_id,
  trkorr,
  pgmid,
  object,
  obj_name,
  task_list_id,
  status
FROM clms_tm_obj_list
;