43.117 SET_GLOBAL_NOTIFICATION Procedure
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
Table 43-101 SET_GLOBAL_NOTIFICATION Parameters
| Parameter | Description | 
|---|---|
| 
 | The Application ID. | 
| 
 | 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;See Also:
"Availability" in Oracle Application Express App Builder User’s Guide
Parent topic: APEX_UTIL