DBA Data[Home] [Help]

APPS.ICX_SEC dependencies on ICX_CALL

Line 303: v_encrypted_upper_psswd := to_char(icx_call.crchash( UPPER(c_user_name), UPPER(c_user_password)));

299: when others then
300: raise e_java_password;
301: end;
302:
303: v_encrypted_upper_psswd := to_char(icx_call.crchash( UPPER(c_user_name), UPPER(c_user_password)));
304:
305: v_encrypted_psswd := to_char(icx_call.crchash( UPPER(c_user_name),c_user_password));
306:
307: if u.WEB_PASSWORD = v_encrypted_upper_psswd or u.WEB_PASSWORD = v_encrypted_psswd

Line 305: v_encrypted_psswd := to_char(icx_call.crchash( UPPER(c_user_name),c_user_password));

301: end;
302:
303: v_encrypted_upper_psswd := to_char(icx_call.crchash( UPPER(c_user_name), UPPER(c_user_password)));
304:
305: v_encrypted_psswd := to_char(icx_call.crchash( UPPER(c_user_name),c_user_password));
306:
307: if u.WEB_PASSWORD = v_encrypted_upper_psswd or u.WEB_PASSWORD = v_encrypted_psswd
308: then
309: OracleApps.displayNewPassword(i_1 => c_user_name);

Line 363: v_encrypted_psswd := icx_call.encrypt(c_user_password);

359: OracleApps.displayLogin(c_error_msg||' '||c_login_msg,'IC','Y');
360:
361: end if;
362:
363: v_encrypted_psswd := icx_call.encrypt(c_user_password);
364:
365: insert into icx_failures
366: (user_name,password,failure_code,failure_date,
367: created_by, creation_date, last_updated_by,

Line 426: icx_on_utilities.unpack_parameters(icx_call.decrypt2(S),l_parameters);

422: l_url varchar2(2000);
423:
424: begin
425:
426: icx_on_utilities.unpack_parameters(icx_call.decrypt2(S),l_parameters);
427:
428: l_user_id := l_parameters(1);
429: l_responsibility_id := l_parameters(2);
430: l_function_id := l_parameters(3);

Line 442: l_url := 'OracleApps.RF?F='||icx_call.encrypt2(l_responsibility_id||'*'||l_function_id||'**]');

438: sendsessioncookie(l_session_id);
439:
440: owa_util.http_header_close;
441:
442: l_url := 'OracleApps.RF?F='||icx_call.encrypt2(l_responsibility_id||'*'||l_function_id||'**]');
443:
444: htp.htmlOpen;
445: -- htp.p('');
446:

Line 657: l_XSID := icx_call.encrypt3(p_session_id);

653:
654: end;
655:
656: -- l_XSID := FND_SESSION_MANAGEMENT.NewXSID;
657: l_XSID := icx_call.encrypt3(p_session_id);
658:
659: -- Is user GUEST
660: -- fnd_profile.get_specific
661: -- (name_z => 'GUEST_USER_PWD',

Line 1228: icx_sec.g_session_id := to_number(icx_call.decrypt3(p_ticket));

1224: l_success boolean := FALSE;
1225:
1226: begin
1227:
1228: icx_sec.g_session_id := to_number(icx_call.decrypt3(p_ticket));
1229:
1230: setSessionPrivate(p_session_id => icx_sec.g_session_id,
1231: p_success => l_success);
1232:

Line 1858: l_recreate_code:=icx_call.encrypt(g_session_id||'*'||c_user_name||'**]');

1854: END IF;
1855:
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

Line 2001: OracleApps.convertSession(icx_call.encrypt(icx_sec.g_session_id||'*'||

1997:
1998:
1999: IF (l_user_id = icx_sec.g_user_id) THEN
2000: --this session needs conversion to authenticated
2001: OracleApps.convertSession(icx_call.encrypt(icx_sec.g_session_id||'*'||
2002: icx_sec.g_resp_appl_id||'*'||
2003: icx_sec.g_responsibility_id||'*'||
2004: icx_sec.g_security_group_id||'*'||
2005: icx_sec.g_function_id||'**]'));

Line 2098: l_session_id := icx_call.decrypt3(c_encrypted_session_id);

2094:
2095: begin
2096:
2097: BEGIN --2301884
2098: l_session_id := icx_call.decrypt3(c_encrypted_session_id);
2099: EXCEPTION
2100: WHEN OTHERS THEN
2101: RETURN FALSE;
2102: END; --2301884

Line 2106: l_transaction_id := icx_call.decrypt3(c_encrypted_transaction_id);

2102: END; --2301884
2103:
2104: if c_encrypted_transaction_id is not null
2105: then
2106: l_transaction_id := icx_call.decrypt3(c_encrypted_transaction_id);
2107: else
2108: l_transaction_id := '';
2109: end if;
2110:

Line 3287: l_encrypted_session_id := icx_call.encrypt3(p_session_id);

3283: begin
3284:
3285: if p_session_id > 0
3286: then
3287: l_encrypted_session_id := icx_call.encrypt3(p_session_id);
3288: else
3289: l_encrypted_session_id := '-1';
3290: end if;
3291:

Line 3435: l_session_id := to_number(icx_call.decrypt3(p_ticket));

3431: -- icx_sec.g_session_cookie_domain := icx_sec.getsessioncookiedomain;
3432:
3433: if p_ticket is not null
3434: then
3435: l_session_id := to_number(icx_call.decrypt3(p_ticket));
3436: else
3437:
3438: -- mputman added 1574527
3439: -- icx_sec.g_session_cookie_name := icx_sec.getsessioncookiename;

Line 3452: l_session_id := to_number(icx_call.decrypt3(l_cookie_session.vals(l_cookie_session.num_vals)));

3448: l_cookie_session := owa_cookie.get(icx_sec.g_session_cookie_name);
3449:
3450: if (l_cookie_session.num_vals > 0) and (l_cookie_session.vals(l_cookie_session.num_vals) <> '-1')
3451: then
3452: l_session_id := to_number(icx_call.decrypt3(l_cookie_session.vals(l_cookie_session.num_vals)));
3453: else
3454: l_session_id := -1;
3455: end if;
3456: end if;

Line 3595: icx_call.encrypt(p_application_id||'*'||

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||'*'||
3598: l_function_id||'**] '));
3599:

Line 3603: -- icx_call.encrypt2(p_application_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||'**] ',
3607: -- l_session_id);

Line 3612: --l_RFURL := l_RFURL||'&'||'P='||icx_call.encrypt2(p_parameters,l_session_id);

3608:
3609: if p_parameters is not null
3610: then
3611: --mputman convert to execute effort
3612: --l_RFURL := l_RFURL||'&'||'P='||icx_call.encrypt2(p_parameters,l_session_id);
3613: l_RFURL := l_RFURL||'&'||'P='||icx_call.encrypt(p_parameters);
3614: end if;
3615: */
3616:

Line 3613: l_RFURL := l_RFURL||'&'||'P='||icx_call.encrypt(p_parameters);

3609: if p_parameters is not null
3610: then
3611: --mputman convert to execute effort
3612: --l_RFURL := l_RFURL||'&'||'P='||icx_call.encrypt2(p_parameters,l_session_id);
3613: l_RFURL := l_RFURL||'&'||'P='||icx_call.encrypt(p_parameters);
3614: end if;
3615: */
3616:
3617: -- 2758891 nlbarlow

Line 3667: icx_call.encrypt(p_application_id||'*'||

3663: --l_session_id := icx_sec.getID(n_param => icx_sec.pv_session_id,
3664: -- p_session_id => p_session_id);
3665:
3666: l_RFLink := ' 3667: icx_call.encrypt(p_application_id||'*'||
3668: p_responsibility_id||'*'||
3669: p_security_group_id||'*'||
3670: p_function_id||'**]'))||
3671: ' TARGET='''||p_target||'''>'||p_text||'
';

Line 3675: -- icx_call.encrypt2(p_application_id||'*'||

3671: ' TARGET='''||p_target||'''>'||p_text||'';
3672:
3673: --mputman convert to execute effort
3674: -- l_RFLink := ' 3675: -- icx_call.encrypt2(p_application_id||'*'||
3676: -- p_responsibility_id||'*'||
3677: -- p_security_group_id||'*'||
3678: -- p_function_id||'**]',
3679: -- l_session_id)||

Line 3802: c_url := 'POREQWF.OPENREQ?a1=' || icx_call.encrypt(c_key1);

3798: c_param varchar2(1000);
3799:
3800: begin
3801:
3802: c_url := 'POREQWF.OPENREQ?a1=' || icx_call.encrypt(c_key1);
3803:
3804: -- c_param := 'POREQWF.OPENREQ?pFlowCode=' || c_flow_code
3805: -- || '&' || 'pKey=' || c_key1;
3806: -- c_url := c_url || c_param;

Line 3866: l_url := l_url||'?p1='||icx_call.encrypt(p_parameter1);

3862: if p_parameter1 is not null
3863: then
3864: if l_web_encrypt_parameters = 'Y'
3865: then
3866: l_url := l_url||'?p1='||icx_call.encrypt(p_parameter1);
3867: else
3868: l_url := l_url||'?p1='||p_parameter1;
3869: end if;
3870: end if;

Line 3876: l_url := l_url||'&'||'p2='||icx_call.encrypt(p_parameter2);

3872: if p_parameter2 is not null
3873: then
3874: if l_web_encrypt_parameters = 'Y'
3875: then
3876: l_url := l_url||'&'||'p2='||icx_call.encrypt(p_parameter2);
3877: else
3878: l_url := l_url||'&'||'p2='||p_parameter2;
3879: end if;
3880: end if;

Line 3886: l_url := l_url||'&'||'p3='||icx_call.encrypt(p_parameter3);

3882: if p_parameter3 is not null
3883: then
3884: if l_web_encrypt_parameters = 'Y'
3885: then
3886: l_url := l_url||'&'||'p3='||icx_call.encrypt(p_parameter3);
3887: else
3888: l_url := l_url||'&'||'p3='||p_parameter3;
3889: end if;
3890: end if;

Line 3896: l_url := l_url||'&'||'p4='||icx_call.encrypt(p_parameter4);

3892: if p_parameter4 is not null
3893: then
3894: if l_web_encrypt_parameters = 'Y'
3895: then
3896: l_url := l_url||'&'||'p4='||icx_call.encrypt(p_parameter4);
3897: else
3898: l_url := l_url||'&'||'p4='||p_parameter4;
3899: end if;
3900: end if;

Line 3906: l_url := l_url||'&'||'p5='||icx_call.encrypt(p_parameter5);

3902: if p_parameter5 is not null
3903: then
3904: if l_web_encrypt_parameters = 'Y'
3905: then
3906: l_url := l_url||'&'||'p5='||icx_call.encrypt(p_parameter5);
3907: else
3908: l_url := l_url||'&'||'p5='||p_parameter5;
3909: end if;
3910: end if;

Line 3916: l_url := l_url||'&'||'p6='||icx_call.encrypt(p_parameter6);

3912: if p_parameter6 is not null
3913: then
3914: if l_web_encrypt_parameters = 'Y'
3915: then
3916: l_url := l_url||'&'||'p6='||icx_call.encrypt(p_parameter6);
3917: else
3918: l_url := l_url||'&'||'p6='||p_parameter6;
3919: end if;
3920: end if;

Line 3926: l_url := l_url||'&'||'p7='||icx_call.encrypt(p_parameter7);

3922: if p_parameter7 is not null
3923: then
3924: if l_web_encrypt_parameters = 'Y'
3925: then
3926: l_url := l_url||'&'||'p7='||icx_call.encrypt(p_parameter7);
3927: else
3928: l_url := l_url||'&'||'p7='||p_parameter7;
3929: end if;
3930: end if;

Line 3936: l_url := l_url||'&'||'p8='||icx_call.encrypt(p_parameter8);

3932: if p_parameter8 is not null
3933: then
3934: if l_web_encrypt_parameters = 'Y'
3935: then
3936: l_url := l_url||'&'||'p8='||icx_call.encrypt(p_parameter8);
3937: else
3938: l_url := l_url||'&'||'p8='||p_parameter8;
3939: end if;
3940: end if;

Line 3946: l_url := l_url||'&'||'p9='||icx_call.encrypt(p_parameter9);

3942: if p_parameter9 is not null
3943: then
3944: if l_web_encrypt_parameters = 'Y'
3945: then
3946: l_url := l_url||'&'||'p9='||icx_call.encrypt(p_parameter9);
3947: else
3948: l_url := l_url||'&'||'p9='||p_parameter9;
3949: end if;
3950: end if;

Line 3956: l_url := l_url||'&'||'p10='||icx_call.encrypt(p_parameter10);

3952: if p_parameter10 is not null
3953: then
3954: if l_web_encrypt_parameters = 'Y'
3955: then
3956: l_url := l_url||'&'||'p10='||icx_call.encrypt(p_parameter10);
3957: else
3958: l_url := l_url||'&'||'p10='||p_parameter10;
3959: end if;
3960: end if;

Line 3966: l_url := l_url||'&'||'p11='||icx_call.encrypt(p_parameter11);

3962: if p_parameter11 is not null
3963: then
3964: if l_web_encrypt_parameters = 'Y'
3965: then
3966: l_url := l_url||'&'||'p11='||icx_call.encrypt(p_parameter11);
3967: else
3968: l_url := l_url||'&'||'p11='||p_parameter11;
3969: end if;
3970: end if;

Line 4111: l_session_id:=icx_call.decrypt3(p_enc_session);

4107:
4108: if u.end_date is null or u.end_date > sysdate
4109: then
4110: --return the session_id after sendsession cookie
4111: l_session_id:=icx_call.decrypt3(p_enc_session);
4112: BEGIN
4113: UPDATE icx_sessions
4114: SET
4115: disabled_flag='N',

Line 4176: v_encrypted_psswd := icx_call.encrypt(i_2);

4172:
4173: OracleApps.displayLogin(c_error_msg||' '||c_login_msg,'IC','Y');
4174: end if;
4175:
4176: v_encrypted_psswd := icx_call.encrypt(i_2);
4177:
4178: insert into icx_failures
4179: (user_name,password,failure_code,failure_date,
4180: created_by, creation_date, last_updated_by,

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: