DBA Data[Home] [Help]

APPS.OWA_CUSTOM dependencies on OWA_SEC

Line 28: owa_sec.set_protection_realm('SECURITY ERROR:'||curproc||':');

24: -- Check that a schema hasn't been added to the package in the path
25: -- PATH_INFO should be '/package.proc?'
26: path := upper(owa_util.get_cgi_env('PATH_INFO'));
27: if (instr(path, curproc) <> 2) then
28: owa_sec.set_protection_realm('SECURITY ERROR:'||curproc||':');
29: return FALSE;
30: end if;
31: end if;
32:

Line 34: owa_sec.set_protection_realm('SUCCESS');

30: end if;
31: end if;
32:
33: if (fnd_web_config.check_enabled(curproc) = 'Y') then
34: owa_sec.set_protection_realm('SUCCESS');
35: return TRUE;
36: else
37: owa_sec.set_protection_realm('SECURITY ERROR:'||curproc||':');
38: return FALSE;

Line 37: owa_sec.set_protection_realm('SECURITY ERROR:'||curproc||':');

33: if (fnd_web_config.check_enabled(curproc) = 'Y') then
34: owa_sec.set_protection_realm('SUCCESS');
35: return TRUE;
36: else
37: owa_sec.set_protection_realm('SECURITY ERROR:'||curproc||':');
38: return FALSE;
39: end if;
40: end authorize;
41:

Line 45: -- OWA_SEC.CUSTOM level authorizes on a per-schema basis.

41:
42: begin -- OWA_CUSTOM package initialization
43:
44: -- Set the PL/SQL Agent's authorization scheme.
45: -- OWA_SEC.CUSTOM level authorizes on a per-schema basis.
46: -- It looks first in user's schema for the authorize function, and
47: -- if not found defaults to a global one in oas_public schema.
48: owa_sec.set_authorization(OWA_SEC.CUSTOM);
49: end OWA_CUSTOM;

Line 48: owa_sec.set_authorization(OWA_SEC.CUSTOM);

44: -- Set the PL/SQL Agent's authorization scheme.
45: -- OWA_SEC.CUSTOM level authorizes on a per-schema basis.
46: -- It looks first in user's schema for the authorize function, and
47: -- if not found defaults to a global one in oas_public schema.
48: owa_sec.set_authorization(OWA_SEC.CUSTOM);
49: end OWA_CUSTOM;