E_NotificationTask

DDL: E_NOTIFICATIONTASK SQL: ENOTIFTSK Type: view EXTENSION

Notification Task Extension

E_NotificationTask is a Extension CDS View that provides data about "Notification Task Extension" in SAP S/4HANA. It reads from 1 data source (qmsm) and exposes 2 fields with key fields Notification, NotificationTask.

Data Sources (1)

SourceAliasJoin Type
qmsm Persistence from

Annotations (8)

NameValueLevelField
EndUserText.label Notification Task Extension view
AbapCatalog.sqlViewName ENOTIFTSK view
ClientHandling.algorithm #AUTOMATED view
VDM.viewType #EXTENSION view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Notification qmnum Notification
KEY NotificationTask manum Task

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 E_NotificationTask.
-- 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: ENOTIFTSK

CREATE VIEW E_NotificationTask AS
SELECT
  qmnum AS Notification,
  manum AS NotificationTask
FROM qmsm AS Persistence
;