DBA Data[Home] [Help]

APPS.FND_SSO_MANAGER dependencies on FND_PROFILE

Line 20: -- fnd_profile.get(name => 'APPS_SERVLET_AGENT',

16: -- cs_anchor varchar2(2000);
17: -- cj_anchor varchar2(2000);
18: --begin
19: --
20: -- fnd_profile.get(name => 'APPS_SERVLET_AGENT',
21: -- val => cs_anchor);
22: -- fnd_profile.get(name => 'APPS_FRAMEWORK_AGENT',
23: -- val => cj_anchor);
24: -- l_requestUrl := requestUrl;

Line 22: -- fnd_profile.get(name => 'APPS_FRAMEWORK_AGENT',

18: --begin
19: --
20: -- fnd_profile.get(name => 'APPS_SERVLET_AGENT',
21: -- val => cs_anchor);
22: -- fnd_profile.get(name => 'APPS_FRAMEWORK_AGENT',
23: -- val => cj_anchor);
24: -- l_requestUrl := requestUrl;
25: -- l_cancelUrl := cancelUrl;
26: --

Line 93: fnd_profile.get(name => 'APPS_SSO_USER_CREATE_UPDATE',

89: then
90: fnd_log.string(fnd_log.LEVEL_STATEMENT, l_module_source, 'Begin');
91: end if;
92:
93: fnd_profile.get(name => 'APPS_SSO_USER_CREATE_UPDATE',
94: val => l_apps_sso_user_create_update);
95:
96: if (fnd_log.LEVEL_STATEMENT >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
97: then

Line 140: fnd_profile.get(name => 'APPS_SERVLET_AGENT',

136: cs_anchor varchar2(2000);
137: cj_anchor varchar2(2000);
138: begin
139:
140: fnd_profile.get(name => 'APPS_SERVLET_AGENT',
141: val => cs_anchor);
142: fnd_profile.get(name => 'APPS_FRAMEWORK_AGENT',
143: val => cj_anchor);
144: l_requestUrl := requestUrl;

Line 142: fnd_profile.get(name => 'APPS_FRAMEWORK_AGENT',

138: begin
139:
140: fnd_profile.get(name => 'APPS_SERVLET_AGENT',
141: val => cs_anchor);
142: fnd_profile.get(name => 'APPS_FRAMEWORK_AGENT',
143: val => cj_anchor);
144: l_requestUrl := requestUrl;
145: l_cancelUrl := cancelUrl;
146: l_langCode := langCode;

Line 184: l_audit_level:=fnd_profile.value('SIGNONAUDIT:LEVEL');

180: select login_id into l_login_id
181: from ICX_SESSIONS
182: where SESSION_ID = l_session_id;
183:
184: l_audit_level:=fnd_profile.value('SIGNONAUDIT:LEVEL');
185: if (l_audit_level is not null) and ( l_login_id is not null)
186: then
187: fnd_signon.audit_end(l_login_id); -- end audit session and resps.
188: end if;

Line 191: fnd_profile.get(name => 'APPS_SERVLET_AGENT',

187: fnd_signon.audit_end(l_login_id); -- end audit session and resps.
188: end if;
189: --
190: l_returnUrl := returnUrl;
191: fnd_profile.get(name => 'APPS_SERVLET_AGENT',
192: val => cs_anchor);
193: if l_returnUrl is NULL then
194: -- Bug 5369045: user servlet name
195: return FND_WEB_CONFIG.trail_slash(cs_anchor)|| 'AppsLogout';

Line 229: FND_PROFILE.GET_SPECIFIC(name_z => 'APPS_SSO_LOCAL_LOGIN',

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);
233: