DBA Data[Home] [Help]

APPS.APP_SESSION dependencies on FND_USER

Line 18: user_id fnd_user.user_id%type, -- Apps User ID

14: --
15: -- Types
16: --
17: type Apps_User_Type is record (
18: user_id fnd_user.user_id%type, -- Apps User ID
19: user_name fnd_user.user_name%type, -- Apps User Name
20: default_user varchar2(1) -- Y/N default user for GUID
21: );
22:

Line 19: user_name fnd_user.user_name%type, -- Apps User Name

15: -- Types
16: --
17: type Apps_User_Type is record (
18: user_id fnd_user.user_id%type, -- Apps User ID
19: user_name fnd_user.user_name%type, -- Apps User Name
20: default_user varchar2(1) -- Y/N default user for GUID
21: );
22:
23: type Apps_User_Table is table of Apps_User_Type

Line 84: -- Return a list of all FND users linked to an SSO guid

80: p_icx_cookie_value in varchar2);
81:
82: --
83: -- Get_All_Linked_Users
84: -- Return a list of all FND users linked to an SSO guid
85: -- IN
86: -- p_sso_guid - the user's SSO guid (required)
87: -- RETURNS
88: -- An array of users linked to this guid

Line 98: -- Get the default FND user linked to an SSO guid

94: return Apps_User_Table;
95:
96: --
97: -- Get_Default_User
98: -- Get the default FND user linked to an SSO guid
99: -- IN
100: -- p_sso_guid - the user's SSO guid (required)
101: -- RETURNS
102: -- A record for default user linked to this guid