DBA Data[Home] [Help]

APPS.FND_RUN_FUNCTION dependencies on FND_PROFILE

Line 95: -- fnd_profile.value_specific when getting the APPS_SERVLET_AGENT

91:
92:
93: --
94: -- copied from fnd_web_config, but this version uses a call to
95: -- fnd_profile.value_specific when getting the APPS_SERVLET_AGENT
96: --
97: function GET_JSP_AGENT ( p_resp_id number,
98: p_resp_appl_id number,
99: p_security_group_id number )

Line 105: agent_url := fnd_profile.value_specific('APPS_SERVLET_AGENT',

101: agent_url varchar2(2000) := NULL;
102: index1 number;
103: index2 number;
104: begin
105: agent_url := fnd_profile.value_specific('APPS_SERVLET_AGENT',
106: null,
107: p_resp_id,
108: p_resp_appl_id,
109: p_security_group_id);

Line 205: l_db_id := fnd_profile.value_specific('APPS_DATABASE_ID', null, p_resp_id,

201: --
202: -- This mirrors what the equivalent java (see RunFunction.java) code
203: -- does (see bug 2942720), primarily for backwards compatibility.
204: --
205: l_db_id := fnd_profile.value_specific('APPS_DATABASE_ID', null, p_resp_id,
206: p_resp_appl_id, p_security_group_id);
207: if ( l_db_id is null ) then
208: l_db_id := fnd_web_config.database_id;
209: end if;

Line 256: l_mac_enabled := fnd_profile.value('FND_VALIDATION_LEVEL');

252: l_session_id := icx_sec.g_session_id;
253: end if;
254:
255: if ( l_session_id <> -1 ) then
256: l_mac_enabled := fnd_profile.value('FND_VALIDATION_LEVEL');
257: l_mac_lite_enabled := fnd_profile.value('FND_FUNCTION_VALIDATION_LEVEL');
258: if ( l_mac_enabled <> 'NONE' or l_mac_lite_enabled <> 'NONE' ) then
259: l_mac_code := fnd_session_utilities.mac(l_mac_data, l_session_id);
260: return l_url || '&oas=' || l_mac_code;

Line 257: l_mac_lite_enabled := fnd_profile.value('FND_FUNCTION_VALIDATION_LEVEL');

253: end if;
254:
255: if ( l_session_id <> -1 ) then
256: l_mac_enabled := fnd_profile.value('FND_VALIDATION_LEVEL');
257: l_mac_lite_enabled := fnd_profile.value('FND_FUNCTION_VALIDATION_LEVEL');
258: if ( l_mac_enabled <> 'NONE' or l_mac_lite_enabled <> 'NONE' ) then
259: l_mac_code := fnd_session_utilities.mac(l_mac_data, l_session_id);
260: return l_url || '&oas=' || l_mac_code;
261: end if;