Home / Database / Oracle Application Express Documentation, Release 18.2
Application Express API Reference
Contents
Oracle Application Express Documentation, Release 18.2
Page 578 of 721

35.49 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 35-43 GET_GLOBAL_NOTIFICATION 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 Application Express App Builder User’s Guide

Previous Page
Page 578 of 721
Next Page