DBA Data[Home] [Help]

APPS.FND_SSO_MANAGER dependencies on FND_USER

Line 39: procedure synch_user_from_LDAP(p_user_name in fnd_user.user_name%type) is

35: -- return FND_WEB_CONFIG.trail_slash(cs_anchor)|| 'oracle.apps.fnd.sso.AppsLogin?requestUrl=' || wfa_html.conv_special_url_chars(l_requestUrl) || '&' || 'cancelUrl=' || wfa_html.conv_special_url_chars(l_cancelUrl);
36: --
37: --end;
38:
39: procedure synch_user_from_LDAP(p_user_name in fnd_user.user_name%type) is
40: l_module_source varchar2(256);
41: l_result pls_integer;
42: l_user_name fnd_user.user_name%type;
43: begin

Line 42: l_user_name fnd_user.user_name%type;

38:
39: procedure synch_user_from_LDAP(p_user_name in fnd_user.user_name%type) is
40: l_module_source varchar2(256);
41: l_result pls_integer;
42: l_user_name fnd_user.user_name%type;
43: begin
44: l_module_source := G_MODULE_SOURCE || 'synch_user_from_LDAP';
45:
46: if (fnd_log.LEVEL_STATEMENT >= fnd_log.G_CURRENT_RUNTIME_LEVEL)

Line 228: select user_id into p_user_id from fnd_user where user_name = username;

224: l_profile_defined boolean;
225: -- userNotFound exception; Bug4420380 Changed exception from local to global
226: begin
227:
228: select user_id into p_user_id from fnd_user where user_name = username;
229: FND_PROFILE.GET_SPECIFIC(name_z => 'APPS_SSO_LOCAL_LOGIN',
230: user_id_z => p_user_id,
231: val_z => pValue,
232: defined_z => l_profile_defined);

Line 252: function get_ldap_user_name(p_user_name in fnd_user.user_name%type)

248: raise userNotFound;
249:
250: end;
251:
252: function get_ldap_user_name(p_user_name in fnd_user.user_name%type)
253: return varchar2 is
254:
255: l_module_source varchar2(256);
256: l_result varchar2(4000);