DBA Data[Home] [Help]

APPS.FND_CONC_CONNECT dependencies on ICX_SEC

Line 69: l_session := icx_sec.createSession(l_user_id);

65: begin
66:
67: l_user_id := fnd_global.user_id;
68: l_sec_grp_id := fnd_global.SECURITY_GROUP_ID;
69: l_session := icx_sec.createSession(l_user_id);
70:
71: fnd_profile.get('APPS_WEB_AGENT', web_agent);
72:
73: if ( length(web_agent) > 0 ) then

Line 81: c_name := icx_sec.getsessioncookiename;

77: end if;
78:
79: if ( l_session > 0 ) then
80:
81: c_name := icx_sec.getsessioncookiename;
82:
83: -- bug#:2218603, getsessioncookiedomain raising exception
84: begin
85: c_domain := icx_sec.getsessioncookiedomain;

Line 85: c_domain := icx_sec.getsessioncookiedomain;

81: c_name := icx_sec.getsessioncookiename;
82:
83: -- bug#:2218603, getsessioncookiedomain raising exception
84: begin
85: c_domain := icx_sec.getsessioncookiedomain;
86: exception
87: when others then
88: c_domain := '';
89: end;

Line 180: oa_url := icx_sec.createRFURL(p_function_id=> func_id,

176: -- encrypt_func := icx_call.encrypt2(resp_appl_id||'*'||resp_id||'*'||fnd_global.security_group_id||'*'||func_id||'*9999**]', l_session);
177:
178:
179: -- oa_url := web_agent || 'OracleApps.RF?F=' || encrypt_func;
180: oa_url := icx_sec.createRFURL(p_function_id=> func_id,
181: p_application_id=>resp_appl_id,
182: p_responsibility_id=>resp_id,
183: p_security_group_id=>l_sec_grp_id,
184: p_session_id=>l_session,