DBA Data[Home] [Help]

APPS.WFA_SEC dependencies on ICX_SEC

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

49: sid := 0;
50:
51: -- Validate the user with icx
52: begin
53: res := ICX_SEC.ValidatePassword(user, pwd, sid);
54: exception
55: when others then
56: wf_core.token('USER', c_user_name);
57: wf_core.token('SQLCODE', SQLCODE);

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

95: ** running worklist or any other workflow api, you'll get a
96: ** lock on the sessions table that will lead to db enqueue contention
97: ** across the db.
98: */
99: res := ICX_SEC.ValidateSession( c_validate_only => 'Y',
100: c_update => FALSE);
101:
102: else
103:

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

100: c_update => FALSE);
101:
102: else
103:
104: res := ICX_SEC.ValidateSession(c_update => FALSE);
105:
106: end if;
107:
108: exception

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

115: if (res = FALSE ) then
116: wf_core.raise('WFSEC_NO_SESSION');
117: end if;
118:
119: l_user_name := ICX_SEC.GetID(99);
120: end if;
121:
122: user_name := l_user_name;
123: exception

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

234: l_user_id NUMBER := to_number(null);
235: role_info_tbl wf_directory.wf_local_roles_tbl_type;
236: begin
237:
238: l_result := ICX_SEC.PseudoSession (l_session_id, IncludeHeader);
239:
240: if (user_name is not null) then
241: Wf_Directory.GetRoleInfo2(user_name,role_info_tbl);
242: