I_ProcMonProcessDefinition

DDL: I_PROCMONPROCESSDEFINITION SQL: IPOCPROCDEF Type: view BASIC

Process Definition

I_ProcMonProcessDefinition is a Basic CDS View that provides data about "Process Definition" in SAP S/4HANA. It reads from 1 data source (poc_c_process) and exposes 2 fields with key field ProcObsvrProcessDefinition. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
poc_c_process poc_c_process from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ProcMonProcessDefinitionText _Text $projection.ProcObsvrProcessDefinition = _Text.ProcObsvrProcessDefinition

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IPOCPROCDEF view
EndUserText.label Process Definition view
VDM.viewType #BASIC view
ObjectModel.representativeKey ProcObsvrProcessDefinition view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality A view
ObjectModel.usageType.sizeCategory L view
ObjectModel.usageType.dataClass CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ProcObsvrProcessDefinition process_type_id Process Def. ID
_Text _Text

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 I_ProcMonProcessDefinition.
-- 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: IPOCPROCDEF

CREATE VIEW I_ProcMonProcessDefinition AS
SELECT
  process_type_id AS ProcObsvrProcessDefinition
FROM poc_c_process
LEFT OUTER JOIN I_ProcMonProcessDefinitionText AS _Text ON ProcObsvrProcessDefinition = _Text.ProcObsvrProcessDefinition  -- association [0..*]
;