DBA Data[Home] [Help]

APPS.AP_WEB_INFRASTRUCTURE_PKG dependencies on ICX_SEC

Line 40: -- Bug 3629683 : Replacing the calls to icx_sec.getID since they

36: l_debugInfo := 'Get dcdName';
37: -- c_dcdName := owa_util.get_cgi_env('SCRIPT_NAME');
38: c_dcdName := rtrim(FND_WEB_CONFIG.PLSQL_AGENT, '/'); -- bug 1960936
39:
40: -- Bug 3629683 : Replacing the calls to icx_sec.getID since they
41: -- are causing a problem in Japanese language.
42: -- c_langCode := icx_sec.getID(icx_sec.PV_LANGUAGE_CODE);
43: -- c_dateFormat := icx_sec.getID(icx_sec.PV_DATE_FORMAT);
44:

Line 42: -- c_langCode := icx_sec.getID(icx_sec.PV_LANGUAGE_CODE);

38: c_dcdName := rtrim(FND_WEB_CONFIG.PLSQL_AGENT, '/'); -- bug 1960936
39:
40: -- Bug 3629683 : Replacing the calls to icx_sec.getID since they
41: -- are causing a problem in Japanese language.
42: -- c_langCode := icx_sec.getID(icx_sec.PV_LANGUAGE_CODE);
43: -- c_dateFormat := icx_sec.getID(icx_sec.PV_DATE_FORMAT);
44:
45: SELECT LANGUAGE_CODE
46: INTO l_languageCode

Line 43: -- c_dateFormat := icx_sec.getID(icx_sec.PV_DATE_FORMAT);

39:
40: -- Bug 3629683 : Replacing the calls to icx_sec.getID since they
41: -- are causing a problem in Japanese language.
42: -- c_langCode := icx_sec.getID(icx_sec.PV_LANGUAGE_CODE);
43: -- c_dateFormat := icx_sec.getID(icx_sec.PV_DATE_FORMAT);
44:
45: SELECT LANGUAGE_CODE
46: INTO l_languageCode
47: FROM FND_LANGUAGES

Line 50: c_langCode := nvl(icx_sec.g_language_code, l_languageCode);

46: INTO l_languageCode
47: FROM FND_LANGUAGES
48: WHERE INSTALLED_FLAG = 'B';
49:
50: c_langCode := nvl(icx_sec.g_language_code, l_languageCode);
51: c_dateFormat := nvl(icx_sec.g_date_format,icx_sec.getNLS_PARAMETER('NLS_DATE_FORMAT'));
52:
53: c_enableNewTaxFields := FALSE;
54:

Line 51: c_dateFormat := nvl(icx_sec.g_date_format,icx_sec.getNLS_PARAMETER('NLS_DATE_FORMAT'));

47: FROM FND_LANGUAGES
48: WHERE INSTALLED_FLAG = 'B';
49:
50: c_langCode := nvl(icx_sec.g_language_code, l_languageCode);
51: c_dateFormat := nvl(icx_sec.g_date_format,icx_sec.getNLS_PARAMETER('NLS_DATE_FORMAT'));
52:
53: c_enableNewTaxFields := FALSE;
54:
55: -- Bug 1505282

Line 246: p_url := ICX_SEC.jumpIntoFunction(

242: else
243: -----------------------------------------------
244: l_debug_info := 'Calling ICX JumpIntoFunction';
245: -----------------------------------------------
246: p_url := ICX_SEC.jumpIntoFunction(
247: p_application_id => 200,
248: p_function_code => l_function_code,
249: p_parameter1 => to_char(p_id),
250: p_parameter2 => p_mode,

Line 270: icx_sec.set_org_context(p_session_id, icx_call.decrypt(p_org_id));

266:
267: ----------------------------------------------
268: l_debug_info := 'Calling ICX Set_Org_context';
269: ----------------------------------------------
270: icx_sec.set_org_context(p_session_id, icx_call.decrypt(p_org_id));
271:
272: EXCEPTION
273: WHEN OTHERS THEN
274: Wf_Core.Context('AP_WEB_INFRASTRUCTURE_PKG', 'ICXGetOrgContext',

Line 293: return icx_sec.validatesession(p_func, '', p_commit, p_update);

289: p_update in boolean default TRUE) return boolean is
290:
291: begin
292:
293: return icx_sec.validatesession(p_func, '', p_commit, p_update);
294:
295: -- return true;
296:
297: end;