C_ProcessRouteTaskPriority

DDL: C_PROCESSROUTETASKPRIORITY SQL: CPRTASKPRIORITY Type: view CONSUMPTION

Process Route Task Priority

C_ProcessRouteTaskPriority is a Consumption CDS View that provides data about "Process Route Task Priority" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field WorkflowTaskPriority.

Data Sources (1)

SourceAliasJoin Type
dd07l FixedValue from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CPRTASKPRIORITY view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Process Route Task Priority view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #CONSUMPTION view
Metadata.allowExtensions true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY WorkflowTaskPriority
WorkflowTaskPriorityDesc ValueText ddtext Short 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 C_ProcessRouteTaskPriority.
-- 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: CPRTASKPRIORITY

CREATE VIEW C_ProcessRouteTaskPriority AS
SELECT
  cast ( FixedValue.domvalue_l as sww_prio ) AS WorkflowTaskPriority,
  ValueText.ddtext AS WorkflowTaskPriorityDesc
FROM dd07l AS FixedValue
;