53.52 GET_GLOBAL_NOTIFICATION Function (Deprecated)
Note:
This API is deprecated and will be removed in a future release.
Use GET_GLOBAL_NOTIFICATION Function in APEX_APPLICATION_ADMIN instead.
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
| Parameter | Description | 
|---|---|
p_application_id | 
                              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 APEX App Builder User’s Guide
Parent topic: APEX_UTIL