I_StdNetworkVH

DDL: I_STDNETWORKVH SQL: ISTDNETVH Type: view BASIC

Standard Network

I_StdNetworkVH is a Basic CDS View that provides data about "Standard Network" in SAP S/4HANA. It reads from 1 data source (plko) and exposes 3 fields with key fields StdNetwork, TaskListGroupCounter.

Data Sources (1)

SourceAliasJoin Type
plko plko from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ISTDNETVH 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
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
EndUserText.label Standard Network view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY StdNetwork plnnr Task List Group
KEY TaskListGroupCounter plnal Referenced BOO Variant
StandardNetworkDescription ktext 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_StdNetworkVH.
-- 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: ISTDNETVH

CREATE VIEW I_StdNetworkVH AS
SELECT
  plnnr AS StdNetwork,
  plnal AS TaskListGroupCounter,
  ktext AS StandardNetworkDescription
FROM plko
;