DBA Data[Home] [Help]

APPS.ICX_SEC dependencies on FND_WEB_CONFIG

Line 1136: icx_sec.g_session_cookie_name := FND_WEB_CONFIG.DATABASE_ID;

1132: from ICX_PARAMETERS;
1133: END IF; --mputman added 1574527
1134:
1135: if (icx_sec.g_session_cookie_name is null) then
1136: icx_sec.g_session_cookie_name := FND_WEB_CONFIG.DATABASE_ID;
1137: end if;
1138:
1139: end if;
1140:

Line 1689: icx_cabo.g_base_href := FND_WEB_CONFIG.WEB_SERVER;

1685:
1686:
1687: if icx_sec.g_mode_code in ( '115J', '115P', '115X', 'SLAVE')
1688: then
1689: icx_cabo.g_base_href := FND_WEB_CONFIG.WEB_SERVER;
1690: icx_cabo.g_plsql_agent := icx_plug_utilities.getPLSQLagent;
1691: else
1692: icx_cabo.g_base_href := '';
1693: icx_cabo.g_plsql_agent := '';

Line 1860: l_url := FND_WEB_CONFIG.TRAIL_SLASH(fnd_profile.value('APPS_WEB_AGENT'));

1856: --removed portal support and moved it to oracleapps.displaylogin mputman 2053850
1857: IF (c_user_name IS NOT NULL) AND (g_session_id IS NOT NULL) THEN
1858: l_recreate_code:=icx_call.encrypt(g_session_id||'*'||c_user_name||'**]');
1859:
1860: l_url := FND_WEB_CONFIG.TRAIL_SLASH(fnd_profile.value('APPS_WEB_AGENT'));
1861: l_url := l_url||'OracleApps.displayLogin?recreate='||l_recreate_code;
1862: -- this fix isnt adequately tested. Will implement in later patch after testing
1863: --begin fix for 2214199
1864: /*

Line 3316: icx_sec.g_session_cookie_name := FND_WEB_CONFIG.DATABASE_ID;

3312: --mputman added 1574527
3313: -- icx_sec.g_session_cookie_name := icx_sec.getsessioncookiename;
3314:
3315: if (icx_sec.g_session_cookie_name is null) then
3316: icx_sec.g_session_cookie_name := FND_WEB_CONFIG.DATABASE_ID;
3317:
3318: end if;
3319:
3320: -- mputman added 1574527

Line 3353: --if FND_WEB_CONFIG.PROTOCOL = 'https:'

3349: then
3350: icx_sec.g_session_cookie_domain := '.'|| icx_sec.g_session_cookie_domain; -- bug 1612338
3351: end if;
3352:
3353: --if FND_WEB_CONFIG.PROTOCOL = 'https:'
3354: --then
3355: -- l_secure := 'secure';
3356: --else
3357: -- l_secure := '';

Line 3363: if FND_WEB_CONFIG.PROTOCOL = 'https:'

3359:
3360: -- bug 1688982
3361: c_browser := owa_util.get_cgi_env('HTTP_USER_AGENT');
3362:
3363: if FND_WEB_CONFIG.PROTOCOL = 'https:'
3364: then
3365: --if (instr(c_browser, 'Mac_PowerPC') = 36 )
3366: -- Bug 2618058
3367: if (instr(c_browser, 'Mac_PowerPC') > 0)

Line 3371: if FND_WEB_CONFIG.PROTOCOL = 'https:'

3367: if (instr(c_browser, 'Mac_PowerPC') > 0)
3368: then
3369: l_secure := '';
3370: else
3371: if FND_WEB_CONFIG.PROTOCOL = 'https:'
3372: then
3373: l_secure := 'secure';
3374: else
3375: l_secure := '';

Line 3442: icx_sec.g_session_cookie_name := FND_WEB_CONFIG.DATABASE_ID;

3438: -- mputman added 1574527
3439: -- icx_sec.g_session_cookie_name := icx_sec.getsessioncookiename;
3440:
3441: if (icx_sec.g_session_cookie_name is null) then
3442: icx_sec.g_session_cookie_name := FND_WEB_CONFIG.DATABASE_ID;
3443: end if;
3444:
3445: -- mputman added 1574527, don't need domain
3446: -- icx_sec.g_session_cookie_domain := icx_sec.getsessioncookiedomain;

Line 3487: l_session_cookie_name := FND_WEB_CONFIG.DATABASE_ID;

3483: l_session_cookie_name:=icx_sec.g_session_cookie_name;
3484: END IF; -- added mputman 1574527
3485:
3486: if (l_session_cookie_name is null) then
3487: l_session_cookie_name := FND_WEB_CONFIG.DATABASE_ID;
3488: end if;
3489:
3490: return l_session_cookie_name;
3491:

Line 3593: l_RFURL := FND_WEB_CONFIG.PLSQL_AGENT||'OracleSSWA.Execute?E='||

3589: l_function_id := p_function_id;
3590: end if;
3591:
3592: /*
3593: l_RFURL := FND_WEB_CONFIG.PLSQL_AGENT||'OracleSSWA.Execute?E='||
3594: wfa_html.conv_special_url_chars(
3595: icx_call.encrypt(p_application_id||'*'||
3596: p_responsibility_id||'*'||
3597: p_security_group_id||'*'||

Line 3602: -- l_RFURL := FND_WEB_CONFIG.PLSQL_AGENT||'OracleApps.RF?F='||

3598: l_function_id||'**] '));
3599:
3600:
3601: --mputman convert to execute effort
3602: -- l_RFURL := FND_WEB_CONFIG.PLSQL_AGENT||'OracleApps.RF?F='||
3603: -- icx_call.encrypt2(p_application_id||'*'||
3604: -- p_responsibility_id||'*'||
3605: -- p_security_group_id||'*'||
3606: -- l_function_id||'**] ',

Line 3847: l_url := FND_WEB_CONFIG.PROTOCOL||'//'||l_web_host_name||'/';

3843: l_url := '';
3844:
3845: if l_web_host_name is not null
3846: then
3847: l_url := FND_WEB_CONFIG.PROTOCOL||'//'||l_web_host_name||'/';
3848: end if;
3849:
3850: if l_web_agent_name is not null
3851: then

Line 3857: l_url := FND_WEB_CONFIG.TRAIL_SLASH(fnd_profile.value('APPS_WEB_AGENT'));

3853: end if;
3854:
3855: if l_url is null
3856: then
3857: l_url := FND_WEB_CONFIG.TRAIL_SLASH(fnd_profile.value('APPS_WEB_AGENT'));
3858: end if;
3859:
3860: l_url := l_url||l_web_html_call;
3861:

Line 4247: l_url:=FND_WEB_CONFIG.TRAIL_SLASH(fnd_profile.value('APPS_WEB_AGENT'))||'OracleApps.displayLogin?recreate='||icx_call.encrypt(p_session_id||'*'||p_user_name||'**]');

4243: -- l_url := replace(l_url,'home','wwsec_app_priv.logout ?p_done_url='||(nvl(l_url3,l_url2)));
4244:
4245: --else PHP
4246: -- ELSE
4247: l_url:=FND_WEB_CONFIG.TRAIL_SLASH(fnd_profile.value('APPS_WEB_AGENT'))||'OracleApps.displayLogin?recreate='||icx_call.encrypt(p_session_id||'*'||p_user_name||'**]');
4248:
4249: -- END IF;
4250: return (l_url);
4251: