46.118 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 46-101 SET_GLOBAL_NOTIFICATION 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;

See Also:

"Availability" in Oracle APEX App Builder User’s Guide