59.125 SET_GLOBAL_NOTIFICATION Procedure (Deprecated)
Note:
This API is deprecated and will be removed in a future release.
Use SET_GLOBAL_NOTIFICATION Procedure in APEX_APPLICATION_ADMIN instead.
This procedure is used to set the global notification message which is the message displayed in page #GLOBAL_NOTIFICATION#
substitution string.
Syntax
APEX_UTIL.SET_GLOBAL_NOTIFICATION (
p_application_id IN NUMBER,
p_global_notification_message IN VARCHAR2 );
Parameters
Parameter | Description |
---|---|
p_application_id |
The Application ID. |
p_global_notification_message |
Text string to be used for the global notification message. |
Example
BEGIN
apex_util.set_global_notification(
p_application_id => 117,
p_global_notification_message => 'This application will be upgraded this weekend at 2100 UTC' );
END;
Parent topic: APEX_UTIL