/APE/I_ProcessObject_TP

DDL: /APE/I_PROCESSOBJECT_TP Type: view TRANSACTIONAL

Process Additional Business Objects - TP

/APE/I_ProcessObject_TP is a Transactional CDS View that provides data about "Process Additional Business Objects - TP" in SAP S/4HANA. It reads from 1 data source (/APE/I_ProcessObject) and exposes 10 fields with key field db_key. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/I_ProcessObject /APE/I_ProcessObject from

Associations (2)

CardinalityTargetAliasCondition
[1..1] /APE/I_ProcessHeader_TP _proc_hdr $projection.parent_key = _proc_hdr.db_key
[1..1] /APE/I_BusObjType_TP _BOType $projection.bo_type_uuid = _BOType.config_key

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName /APE/I_PRC_OBJ view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Process Additional Business Objects - TP view
ObjectModel.writeActivePersistence /APE/PROC_OBJ view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY db_key db_key UUID
parent_key parent_key UUID
bo_type_uuid bo_type_uuid
bo_uuid bo_uuid
bo_type _BOType bo_type SOT Name
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_ProcessObject_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_ProcessObject_TP AS
SELECT
  db_key,
  parent_key,
  bo_type_uuid,
  bo_uuid,
  _BOType.bo_type AS bo_type,
  created_at,
  created_by,
  changed_at,
  changed_by
FROM /APE/I_ProcessObject
LEFT OUTER JOIN /APE/I_ProcessHeader_TP AS _proc_hdr ON parent_key = _proc_hdr.db_key  -- association [1..1]
LEFT OUTER JOIN /APE/I_BusObjType_TP AS _BOType ON bo_type_uuid = _BOType.config_key  -- association [1..1]
;