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 3414: l_session_id := to_number(icx_call.decrypt3(p_ticket));

3410: -- icx_sec.g_session_cookie_domain := icx_sec.getsessioncookiedomain;
3411:
3412: if p_ticket is not null
3413: then
3414: l_session_id := to_number(icx_call.decrypt3(p_ticket));
3415: else
3416:
3417: -- mputman added 1574527
3418: -- icx_sec.g_session_cookie_name := icx_sec.getsessioncookiename;

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

3427: l_cookie_session := owa_cookie.get(icx_sec.g_session_cookie_name);
3428:
3429: if (l_cookie_session.num_vals > 0) and (l_cookie_session.vals(l_cookie_session.num_vals) <> '-1')
3430: then
3431: l_session_id := to_number(icx_call.decrypt3(l_cookie_session.vals(l_cookie_session.num_vals)));
3432: else
3433: l_session_id := -1;
3434: end if;
3435: end if;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

4106:
4107: if u.end_date is null or u.end_date > sysdate
4108: then
4109: --return the session_id after sendsession cookie
4110: l_session_id:=icx_call.decrypt3(p_enc_session);
4111:
4112: -- Session Hijacking. re-create XSID whenever session is re-created.
4113: l_new_xsid := fnd_session_management.NewXSID;
4114: BEGIN

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

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

Line 4250: 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||'**]');

4246: -- l_url := replace(l_url,'home','wwsec_app_priv.logout ?p_done_url='||(nvl(l_url3,l_url2)));
4247:
4248: --else PHP
4249: -- ELSE
4250: 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||'**]');
4251:
4252: -- END IF;
4253: return (l_url);
4254: