I_NetworkActivityCtrlProfile

DDL: I_NETWORKACTIVITYCTRLPROFILE SQL: INWACTCTRLPFL Type: view BASIC

Network Activity Control Profile

I_NetworkActivityCtrlProfile is a Basic CDS View that provides data about "Network Activity Control Profile" in SAP S/4HANA. It reads from 1 data source (t430) and exposes 4 fields with key field OperationControlProfile.

Data Sources (1)

SourceAliasJoin Type
t430 t430 from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName INWACTCTRLPFL view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey OperationControlProfile view
EndUserText.label Network Activity Control Profile view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY OperationControlProfile steus Control Key
IsCostActivity pkost Gen. costs act.
IsServiceActivity service Service Type
OperationExternalProcessing lief Ext. Processing

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_NetworkActivityCtrlProfile.
-- 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: INWACTCTRLPFL

CREATE VIEW I_NetworkActivityCtrlProfile AS
SELECT
  steus AS OperationControlProfile,
  pkost AS IsCostActivity,
  service AS IsServiceActivity,
  lief AS OperationExternalProcessing
FROM t430
;