DBA Data[Home] [Help]

PACKAGE: APPS.HR_SECURITY_UTILS

Source


1 PACKAGE HR_SECURITY_UTILS AUTHID CURRENT_USER AS
2 /* $Header: hrscutl.pkh 115.0 99/07/17 16:59:41 porting ship $ */
3 
4   --
5   -- Name
6   --   check_profile_options
7   -- Purpose
8   --
9   --   Verifies that the Business Group and Security Profile profile
10   --   options are set correctly. Please see package body for details
11   --
12   -- Arguments
13   --   *none*
14   --
15   PROCEDURE check_profile_options ;
16 
17   PROCEDURE debug_on ;
18   PROCEDURE debug_off ;
19 
20   FUNCTION  IS_CUSTOM_SCHEMA return boolean ;
21   pragma restrict_references ( is_custom_schema , WNPS , WNDS ) ;
22 
23   -- Name
24   --   set_custom_schema
25   -- Purpose
26   --   Sets a flag which treats a non-APPS schema as if it has
27   --   full access to secured objects. This takes effect for the
28   --   duration of the package state.
29   --
30   --   This is to be used by teams like Oracle Projects which
31   --   interface to 3rd party products via schemas other than APPS
32   --
33   --   This function should be in hr_security however due to 566823
34   --   and 519783.
35   --
36   -- Arguments
37   --   *none*
38 
39  PROCEDURE SET_CUSTOM_SCHEMA ;
40 
41 end HR_SECURITY_UTILS;