DBA Data[Home] [Help]

APPS.ORACLESSWA dependencies on ORACLEAPPS

Line 109: OracleApps.runFunction

105: c_update => FALSE);
106:
107: icx_sec.g_validateSession_flag := false;
108:
109: OracleApps.runFunction
110: (c_function_id => l_function_id,
111: n_session_id => l_session_id,
112: c_parameters => l_text,
113: p_resp_appl_id => l_resp_appl_id,

Line 129: --if this is php, send to oracleapps.convertsession with encrypted param string

125: htp.p('User does not have access to this function');
126: htp.nl;
127: --NEED TO DO!::
128: --if this is portal/sso, send to oraclesswa.convertsession
129: --if this is php, send to oracleapps.convertsession with encrypted param string
130: -- htp.p(SQLERRM);
131: htp.p(dbms_utility.format_error_stack);
132:
133: end;

Line 515: OracleApps.runFunction(c_function_id => l_function_id,

511: if icx_sec.validateSession
512: then
513: l_session_id := icx_sec.getID(icx_sec.pv_session_id);
514:
515: OracleApps.runFunction(c_function_id => l_function_id,
516: n_session_id => l_session_id);
517: end if;
518:
519: end;

Line 863: OracleApps.runfunction(p_resp_appl_id => l_resp_appl_id,

859: IF p IS NOT NULL THEN
860: l_params := icx_call.decrypt(P);
861: --p_resp_appl_id,p_responsibility_id,p_security_group_id,
862: --p_menu_id,c_function_id,p_function_type,p_page_id
863: OracleApps.runfunction(p_resp_appl_id => l_resp_appl_id,
864: p_responsibility_id => l_responsibility_id,
865: p_security_group_id => nvl(l_security_group_id,'0'),
866: p_function_type => f_type,
867: c_function_id => l_function_id,

Line 871: OracleApps.runfunction(p_resp_appl_id => l_resp_appl_id,

867: c_function_id => l_function_id,
868: n_session_id => icx_Sec.g_session_id,
869: c_parameters => l_params);
870: ELSE
871: OracleApps.runfunction(p_resp_appl_id => l_resp_appl_id,
872: p_responsibility_id => l_responsibility_id,
873: p_security_group_id => nvl(l_security_group_id,'0'),
874: p_function_type => f_type,
875: c_function_id => l_function_id,

Line 904: OracleApps.displayLogin(i_direct => l_url,

900: defined_z => l_profile_defined);
901: l_url := FND_WEB_CONFIG.TRAIL_SLASH(l_apps_web_agent);
902: l_url := l_url||'OracleSSWA.Execute?E='||icx_call.encrypt(l_resp_appl_id||'*'||l_responsibility_id||'*'||l_security_group_id||'*'||l_function_id||'*'||'**]')||'&'||'P='||P||'&'||'L='||L;
903:
904: OracleApps.displayLogin(i_direct => l_url,
905: recreate => l_recreate_code);
906:
907: --function available to current or anonymous with a valid session
908: ELSIF (fnd_function.test_id(l_function_id)) -- OR (l_function_id=2594)

Line 1050: OracleApps.convertSession(new_encrypted_String);

1046: l_responsibility_id||'*'||
1047: l_security_group_id||'*'||
1048: l_function_id||'*'||
1049: p||'**]');
1050: OracleApps.convertSession(new_encrypted_String);
1051:
1052: END IF;
1053: END IF;
1054:

Line 1065: OracleApps.displayLogin(c_error_msg||' '||c_login_msg,'IC','Y');

1061: fnd_message.set_name('ICX','ICX_INVALID_FUNCTION');
1062: c_error_msg := fnd_message.get;
1063: fnd_message.set_name('ICX','ICX_SIGNIN_AGAIN');
1064: c_login_msg := fnd_message.get;
1065: OracleApps.displayLogin(c_error_msg||' '||c_login_msg,'IC','Y');
1066:
1067: WHEN OTHERS THEN
1068: icx_sec.g_prog_appl_id := -1;
1069:

Line 1079: OracleApps.displayLogin(c_error_msg||' '||c_login_msg,'IC','Y');

1075: fnd_message.set_name('ICX','ICX_CONTACT_WEBMASTER');
1076: c_error_msg := fnd_message.get;
1077: c_login_msg := dbms_utility.format_error_stack;
1078:
1079: OracleApps.displayLogin(c_error_msg||' '||c_login_msg,'IC','Y');
1080: END;
1081:
1082: FUNCTION SSORedirect (p_req_url IN VARCHAR2,
1083: p_cancel_url IN VARCHAR2)