/APE/C_PatternProcess_VH

DDL: /APE/C_PATTERNPROCESS_VH Type: view CONSUMPTION

Pattern Process

/APE/C_PatternProcess_VH is a Consumption CDS View that provides data about "Pattern Process" in SAP S/4HANA. It reads from 1 data source (/APE/C_Process_VH) and exposes 9 fields with key field ProcessKey.

Data Sources (1)

SourceAliasJoin Type
/APE/C_Process_VH Process from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName /APE/C_PATPROVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Pattern Process view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey ProcessKey view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #CONSUMPTION view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY ProcessKey /APE/C_Process_VH ProcessKey Char
ProcessDescription /APE/C_Process_VH ProcessDescription
ProcessCluster /APE/C_Process_VH ProcessCluster
ProcessClusterDescription /APE/C_Process_VH ProcessClusterDescription
ProcessID /APE/C_Process_VH ProcessID Settlement ID
ProcessIDDescription /APE/C_Process_VH ProcessIDDescription
Version /APE/C_Process_VH Version XML Vers.
VersionDescription /APE/C_Process_VH VersionDescription
proc_cluster /APE/C_Process_VH proc_cluster

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_PatternProcess_VH.
-- 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_PatternProcess_VH AS
SELECT
  Process.ProcessKey AS ProcessKey,
  Process.ProcessDescription AS ProcessDescription,
  Process.ProcessCluster AS ProcessCluster,
  Process.ProcessClusterDescription AS ProcessClusterDescription,
  Process.ProcessID AS ProcessID,
  Process.ProcessIDDescription AS ProcessIDDescription,
  Process.Version AS Version,
  Process.VersionDescription AS VersionDescription,
  Process.proc_cluster AS proc_cluster
FROM /APE/C_Process_VH AS Process
;