I_ProcessRouteActivityText

DDL: I_PROCESSROUTEACTIVITYTEXT SQL: IPRACTIVITYTXT Type: view BASIC

Process Route Activity Text

I_ProcessRouteActivityText is a Basic CDS View that provides data about "Process Route Activity Text" in SAP S/4HANA. It reads from 1 data source (srmactivtt) and exposes 5 fields with key fields ProcessRouteActivityArea, ProcessRouteActivity, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
srmactivtt srmactivtt from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IPRACTIVITYTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
EndUserText.label Process Route Activity Text view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ProcessRouteActivityArea actarea Activity Area
KEY ProcessRouteActivity activity VAT Activity
KEY Language spras Off. Language
ProcessRouteActivityDesc actdc Activity Description
_Language _Language

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_ProcessRouteActivityText.
-- 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: IPRACTIVITYTXT

CREATE VIEW I_ProcessRouteActivityText AS
SELECT
  actarea AS ProcessRouteActivityArea,
  activity AS ProcessRouteActivity,
  spras AS Language,
  actdc AS ProcessRouteActivityDesc
FROM srmactivtt
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [1..1]
;