DBA Data[Home] [Help]

PACKAGE: APPS.HR_SIGNON

Source


1 PACKAGE HR_SIGNON AS
2 /* $Header: hrsignon.pkh 120.0.12010000.1 2008/07/28 03:47:55 appldev ship $ */
3    --
4    pragma restrict_references (hr_signon, WNPS, WNDS);
5    --
6    -- package-level global varable for use with HR Secure User functionality
7    --
8    g_hr_security_profile  per_security_profiles%ROWTYPE;
9    --
10    -- Name
11    --   Initialize_HR_Security
12    --
13    -- Purpose
14    --    This procedure is called during the initialization of APPS whenever
15    --    a user logs in or switches responsibility.
16    --
17    --    The call was previously hard-coded in the fnd_client_info package.....
18    --
19    -- Arguments
20    --   None.
21    --
22    PROCEDURE Initialize_HR_Security;
23    --
24    -- Name
25    -- Security_Groups_Enabled
26    --
27    -- Purpose
28    --    This function checks whether or not security groups are enabled.
29    --
30    FUNCTION Security_Groups_Enabled
31    RETURN VARCHAR2;
32 
33 
34    -- 2876315 - mirrors the value of fnd_global.session_context
35    session_context NUMBER := 0 ;
36 
37 END HR_SIGNON;