/APE/I_ProcessEvents_TP

DDL: /APE/I_PROCESSEVENTS_TP Type: view TRANSACTIONAL

Process Activities

/APE/I_ProcessEvents_TP is a Transactional CDS View that provides data about "Process Activities" in SAP S/4HANA. It reads from 1 data source (/APE/I_ProcessEvents) and exposes 15 fields with key field db_key. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/I_ProcessEvents /APE/I_ProcessEvents from

Associations (1)

CardinalityTargetAliasCondition
[1..1] /APE/I_ProcessHeader_TP _proc_hdr $projection.parent_key = _proc_hdr.db_key

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName /APE/I_PRC_EVENT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Process Activities view
ObjectModel.writeActivePersistence /APE/PROC_EVENT view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY db_key db_key UUID
parent_key parent_key UUID
bo_type bo_type SOT Name
bo_uuid bo_uuid
step_uuid step_uuid
event_status event_status Event Status
text_attr1 text_attr1
text_attr2 text_attr2
text_attr3 text_attr3
text_attr4 text_attr4
created_at created_at Uploaded On
created_by created_by Version Created By
changed_at changed_at Timestamp
changed_by changed_by User Name
_proc_hdr _proc_hdr

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 /APE/I_ProcessEvents_TP.
-- 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 /APE/I_ProcessEvents_TP AS
SELECT
  db_key,
  parent_key,
  bo_type,
  bo_uuid,
  step_uuid,
  event_status,
  text_attr1,
  text_attr2,
  text_attr3,
  text_attr4,
  created_at,
  created_by,
  changed_at,
  changed_by
FROM /APE/I_ProcessEvents
LEFT OUTER JOIN /APE/I_ProcessHeader_TP AS _proc_hdr ON parent_key = _proc_hdr.db_key  -- association [1..1]
;