Oracle OWA_CUSTOM
Version 26ai

General Information
Library Note Morgan's Library Page Header
The best Oracle News for FY2026

Oracle Database 26ai will be available on generic Linux platforms in January and soon on AIX and Windows
Purpose Sets up values to be used by other Web Agent packages.
AUTHID DEFINER
Dependencies
OWA OWA_GLOBAL OWA_SEC
OWA_COOKIE OWA_INIT  
Documented No
First Available 8.1.7
Security Model Owned by SYS with EXECUTE granted to PUBLIC
Source {ORACLE_HOME}/rdbms/admin/privcust.sql
Subprograms
 
AUTHORIZE
Global PLSQL Agent Authorization callback function. It is used when PLSQL Agent's authorization scheme is set to GLOBAL or CUSTOM when there is overriding OWA_CUSTOM package. This is a default implementation that the developer should modify. owa_custom.authorize RETURN BOOLEAN;
-- source code
FUNCTION authorize RETURN BOOLEAN IS
BEGIN
  owa_sec.set_protection_realm('To-be-defined realm');
  RETURN FALSE;
END;
 
INITIALIZATION SECTION
Package initialization section
-- source code
BEGIN /* OWA_CUSTOM package customization */

/*******************************************************************/
/* Set the PL/SQL Agent's authorization scheme                     */
/* This should be modified to reflect the authorization need of    */
/* your PLSQL Agent                                                */
/*******************************************************************/

  owa_sec.set_authorization(OWA_SEC.NO_CHECK);
END;
/

Related Topics
Built-in Functions
Built-in Packages
OWA
OWA_COOKIE
OWA_CX
OWA_IMAGE
OWA_MATCH
OWA_OPT_LOCK
OWA_PATTERN
OWA_SEC
OWA_TEXT
OWA_UTIL
What's New In 21c
What's New In 26ai

Morgan's Library Page Footer
This site is maintained by Daniel Morgan. Last Updated: This site is protected by copyright and trademark laws under U.S. and International law. © 1998-2026 Daniel A. Morgan All Rights Reserved