DBA Data[Home] [Help]

APPS.WFA_SEC dependencies on ICX_SEC

Line 64: res := ICX_SEC.ValidatePassword(user, pwd, sid);

60: sid := 0;
61:
62: -- Validate the user with icx
63: begin
64: res := ICX_SEC.ValidatePassword(user, pwd, sid);
65: exception
66: when others then
67: wf_core.token('USER', c_user_name);
68: wf_core.token('SQLCODE', SQLCODE);

Line 110: res := ICX_SEC.ValidateSession( c_validate_only => 'Y',

106: ** running worklist or any other workflow api, you'll get a
107: ** lock on the sessions table that will lead to db enqueue contention
108: ** across the db.
109: */
110: res := ICX_SEC.ValidateSession( c_validate_only => 'Y',
111: c_update => FALSE);
112:
113: else
114:

Line 115: res := ICX_SEC.ValidateSession(c_update => FALSE);

111: c_update => FALSE);
112:
113: else
114:
115: res := ICX_SEC.ValidateSession(c_update => FALSE);
116:
117: end if;
118:
119: exception

Line 130: l_user_name := ICX_SEC.GetID(99);

126: if (res = FALSE ) then
127: wf_core.raise('WFSEC_NO_SESSION');
128: end if;
129:
130: l_user_name := ICX_SEC.GetID(99);
131: end if;
132:
133: user_name := l_user_name;
134: exception

Line 249: l_result := ICX_SEC.PseudoSession (l_session_id, IncludeHeader);

245: l_user_id NUMBER := to_number(null);
246: role_info_tbl wf_directory.wf_local_roles_tbl_type;
247: begin
248:
249: l_result := ICX_SEC.PseudoSession (l_session_id, IncludeHeader);
250:
251: if (user_name is not null) then
252: Wf_Directory.GetRoleInfo2(user_name,role_info_tbl);
253: