I_NotificationPriority

DDL: I_NOTIFICATIONPRIORITY SQL: INOTIFPRIO Type: view BASIC

Notification Priority

I_NotificationPriority is a Basic CDS View that provides data about "Notification Priority" in SAP S/4HANA. It reads from 1 data source (t356) and exposes 3 fields with key fields NotificationPriorityType, NotificationPriority.

Data Sources (1)

SourceAliasJoin Type
t356 t356 from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName INOTIFPRIO view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
EndUserText.label Notification Priority view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey NotificationPriority view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY NotificationPriorityType artpr PriorityType
KEY NotificationPriority priok Priority
_NotificationPriorityText _NotificationPriorityText

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_NotificationPriority.
-- 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: INOTIFPRIO

CREATE VIEW I_NotificationPriority AS
SELECT
  artpr AS NotificationPriorityType,
  priok AS NotificationPriority
FROM t356
;