Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Specifies the context in which the notification appears in the client.
[CurrSCOPE := ]SCOPE([NewSCOPE])
Parameters
NewSCOPE
Type: NotificationScope
The parameter has the following values:
Value | Description |
---|---|
LocalScope | The notification appears in context of the user's current task, on the page the user is currently working on. This is the default value. |
GlobalScope | The notifications are not directly related to the user's current task. Note: GlobalScope is currently not supported, so do not use this value. |
Return Value
CurrSCOPE
Type: NotificationScope
The scope of the current notification.
Remarks
For more information and a detailed example, see Notifications.
Example
The following code creates a notification and sends it in the local scope.
MyNotification.MESSAGE := 'This is a notification';
MyNotification.SCOPE := NOTIFICATIONSCOPE::LocalScope;
MyNotification.SEND;
See Also
SCOPE Function(Notification)
SEND Function (Notification)
Notifications
Multilanguage Development