I_StandardNetworkActivity

DDL: I_STANDARDNETWORKACTIVITY SQL: ISTDNETWACT Type: view BASIC

Standard Network Activities

I_StandardNetworkActivity is a Basic CDS View that provides data about "Standard Network Activities" in SAP S/4HANA. It reads from 2 data sources (plas, plpo) and exposes 5 fields with key fields StdNetwork, StdNetworkActivityInternalID, TaskListGroupCounter.

Data Sources (2)

SourceAliasJoin Type
plas plas inner
plpo plpo from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ISTDNETWACT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
EndUserText.label Standard Network Activities view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY StdNetwork plpo plnnr Task List Group
KEY StdNetworkActivityInternalID plpo plnkn Task list node
KEY TaskListGroupCounter plas plnal Referenced BOO Variant
StdNetworkActivity Operation
StdNetworkActivityDesc plpo ltxa1 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 I_StandardNetworkActivity.
-- 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: ISTDNETWACT

CREATE VIEW I_StandardNetworkActivity AS
SELECT
  plpo.plnnr AS StdNetwork,
  plpo.plnkn AS StdNetworkActivityInternalID,
  plas.plnal AS TaskListGroupCounter,
  cast( vornr as ps_s4_vornr ) AS StdNetworkActivity,
  plpo.ltxa1 AS StdNetworkActivityDesc
FROM plpo
INNER JOIN plas ON /* join condition not captured in parsed metadata */
;