/APE/C_Process_DR

DDL: /APE/C_PROCESS_DR Type: view CONSUMPTION

Process

/APE/C_Process_DR is a Consumption CDS View that provides data about "Process" in SAP S/4HANA. It reads from 1 data source (/APE/I_Process_DR) and exposes 10 fields with key field draftuuid.

Data Sources (1)

SourceAliasJoin Type
/APE/I_Process_DR /APE/I_Process_DR from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName /APE/C_PROC_DR view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Process view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY draftuuid draftuuid UUID
config_key config_key Char
proc_cluster proc_cluster
proc_id_uuid proc_id_uuid
proc_id proc_id Processing
version_uuid version_uuid
version version XML Vers.
category category Violation Category
class class User Group
config_layer config_layer

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/C_Process_DR.
-- 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/C_Process_DR AS
SELECT
  draftuuid,
  config_key,
  proc_cluster,
  proc_id_uuid,
  proc_id,
  version_uuid,
  version,
  category,
  class,
  config_layer
FROM /APE/I_Process_DR
;