DBA Data[Home] [Help]

PACKAGE: APPS.HRI_BPL_SECURITY

Source


1 PACKAGE HRI_BPL_SECURITY AS
2 /* $Header: hribpscr.pkh 120.1 2006/11/16 10:58:58 anmajumd noship $ */
3 --
4 -- Global Variables
5 --
6 g_resp_id       NUMBER(15);
7 g_resp_key      VARCHAR2(30);
8 --
9 /* simply returns the profile option 'HRI_DBI_CHO_NMD_USR' value */
10 FUNCTION get_named_user_profile_value RETURN NUMBER;
11 
12 /* wrapper function, checks the value for the new CHO
13    profile option and returns that if its set
14    otherwise returns fnd_global.employee_id          */
15 FUNCTION get_apps_signin_person_id RETURN NUMBER;
16 --
17 -- Function to return the manager id in OBIEE depending upon the responsibility
18 -- used to log in
19 --
20 FUNCTION get_mgr_id(p_employee_id IN NUMBER, p_resp_id IN NUMBER, p_resp_appl_id IN NUMBER) RETURN NUMBER;
21 --
22 -- Function to return the organization id in OBIEE depending upon the responsibility
23 -- used to log in
24 --
25 FUNCTION get_org_id(p_employee_id IN NUMBER, p_resp_id IN NUMBER, p_resp_appl_id IN NUMBER) RETURN NUMBER;
26 --
27 -- Overloaded version of get_mgr_id. It takes no parameter as input and uses
28 -- FND packages to set the parameters
29 --
30 FUNCTION get_mgr_id RETURN NUMBER;
31 --
32 --
33 -- Overloaded version of get_org_id. It takes no parameter as input and uses
34 -- FND packages to set the parameters
35 --
36 FUNCTION get_org_id RETURN NUMBER;
37 
38 END HRI_BPL_SECURITY;