DBA Data[Home] [Help]

PACKAGE: OWAPUB.OWA_CUSTOM

Source


1 package OWA_CUSTOM is
2 
3    -- If your timezone is not in the list of standard timezones,
4    -- then use dbms_server_gmtdiff to give the number of hours
5    -- that your database server is ahead (or negative if behind)
6    -- Greenwich Mean Time
7    dbms_server_timezone constant varchar2(3) := 'PST';
8    dbms_server_gmtdiff  constant number      := NULL;
9 
10        /************************************************************************/
11       /*  Global PLSQL Agent Authorization callback function -                */
12      /*     it is used when PLSQL Agent's authorization scheme is set to     */
13     /*      GLOBAL or CUSTOM when there is no overriding OWA_CUSTOM package */
14    /************************************************************************/
15    function authorize return boolean;
16 
17 end;