43.57 GET_GLOBAL_NOTIFICATION Function
This function gets the global notification message which is the message displayed in page #GLOBAL_NOTIFICATION# substitution string.
                  
Syntax
APEX_UTIL.GET_GLOBAL_NOTIFICATION(
   p_application_id IN NUMBER) RETURN VARCHAR2;Parameters
Table 43-51 GET_GLOBAL_NOTIFICATION Parameters
| Parameter | Description | 
|---|---|
| 
 | The Application ID. | 
Example
declare
    l_global_notification varchar2(100);
begin
    l_global_notification := apex_util.get_global_notification(
                                 p_application_id => 117 );
    dbms_output.put_line( 'The current global notification is: ' || l_global_notification );
end;See Also:
"Availability" in Oracle Application Express App Builder User’s Guide
Parent topic: APEX_UTIL