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 503: OracleApps.runFunction(c_function_id => l_function_id,

499: if icx_sec.validateSession
500: then
501: l_session_id := icx_sec.getID(icx_sec.pv_session_id);
502:
503: OracleApps.runFunction(c_function_id => l_function_id,
504: n_session_id => l_session_id);
505: end if;
506:
507: end;

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

847: IF p IS NOT NULL THEN
848: l_params := icx_call.decrypt(P);
849: --p_resp_appl_id,p_responsibility_id,p_security_group_id,
850: --p_menu_id,c_function_id,p_function_type,p_page_id
851: OracleApps.runfunction(p_resp_appl_id => l_resp_appl_id,
852: p_responsibility_id => l_responsibility_id,
853: p_security_group_id => nvl(l_security_group_id,'0'),
854: p_function_type => f_type,
855: c_function_id => l_function_id,

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

855: c_function_id => l_function_id,
856: n_session_id => icx_Sec.g_session_id,
857: c_parameters => l_params);
858: ELSE
859: OracleApps.runfunction(p_resp_appl_id => l_resp_appl_id,
860: p_responsibility_id => l_responsibility_id,
861: p_security_group_id => nvl(l_security_group_id,'0'),
862: p_function_type => f_type,
863: c_function_id => l_function_id,

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

888: defined_z => l_profile_defined);
889: l_url := FND_WEB_CONFIG.TRAIL_SLASH(l_apps_web_agent);
890: 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;
891:
892: OracleApps.displayLogin(i_direct => l_url,
893: recreate => l_recreate_code);
894:
895: --function available to current or anonymous with a valid session
896: ELSIF (fnd_function.test_id(l_function_id)) -- OR (l_function_id=2594)

Line 1038: OracleApps.convertSession(new_encrypted_String);

1034: l_responsibility_id||'*'||
1035: l_security_group_id||'*'||
1036: l_function_id||'*'||
1037: p||'**]');
1038: OracleApps.convertSession(new_encrypted_String);
1039:
1040: END IF;
1041: END IF;
1042:

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

1049: fnd_message.set_name('ICX','ICX_INVALID_FUNCTION');
1050: c_error_msg := fnd_message.get;
1051: fnd_message.set_name('ICX','ICX_SIGNIN_AGAIN');
1052: c_login_msg := fnd_message.get;
1053: OracleApps.displayLogin(c_error_msg||' '||c_login_msg,'IC','Y');
1054:
1055: WHEN OTHERS THEN
1056: icx_sec.g_prog_appl_id := -1;
1057:

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

1063: fnd_message.set_name('ICX','ICX_CONTACT_WEBMASTER');
1064: c_error_msg := fnd_message.get;
1065: c_login_msg := dbms_utility.format_error_stack;
1066:
1067: OracleApps.displayLogin(c_error_msg||' '||c_login_msg,'IC','Y');
1068: END;
1069:
1070: FUNCTION SSORedirect (p_req_url IN VARCHAR2,
1071: p_cancel_url IN VARCHAR2)