I_ProcessRouteActivity

DDL: I_PROCESSROUTEACTIVITY Type: view_entity BASIC Package: VDM_PLMB_PR

Process Route Acitivity

I_ProcessRouteActivity is a Basic CDS View that provides data about "Process Route Acitivity" in SAP S/4HANA. It reads from 1 data source (srmactivty) and exposes 3 fields with key fields ProcessRouteActivityArea, ProcessRouteActivity. Part of development package VDM_PLMB_PR.

Data Sources (1)

SourceAliasJoin Type
srmactivty Activity from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Process Route Acitivity view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ProcessRouteActivityArea srmactivty actarea Activity Area
KEY ProcessRouteActivity srmactivty activity VAT Activity
ProcessRouteActivityType srmactivty act_type Task Type

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_ProcessRouteActivity.
-- 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 I_ProcessRouteActivity AS
SELECT
  Activity.actarea AS ProcessRouteActivityArea,
  Activity.activity AS ProcessRouteActivity,
  Activity.act_type AS ProcessRouteActivityType
FROM srmactivty AS Activity
;