DBA Data[Home] [Help]

APPS.IRC_WEB dependencies on FND_FUNCTION

Line 37: if (fnd_function.test(l_function_name)) then

33: open csr_posting(to_number(l_vacancy_id));
34: fetch csr_posting into l_posting_id;
35: close csr_posting;
36: --
37: if (fnd_function.test(l_function_name)) then
38: -- for createExecLink, p_url_only must be N to not get the link html
39: l_url:=icx_portlet.createExecLink
40: (p_function_id=>fnd_function.get_function_id(l_function_name)
41: ,p_application_id=>fnd_global.resp_appl_id

Line 40: (p_function_id=>fnd_function.get_function_id(l_function_name)

36: --
37: if (fnd_function.test(l_function_name)) then
38: -- for createExecLink, p_url_only must be N to not get the link html
39: l_url:=icx_portlet.createExecLink
40: (p_function_id=>fnd_function.get_function_id(l_function_name)
41: ,p_application_id=>fnd_global.resp_appl_id
42: ,p_responsibility_id=>fnd_global.resp_id
43: ,p_security_group_id=>fnd_global.security_group_id
44: ,p_parameters=>'p_svid='||l_vacancy_id||'&'||'p_spid='||l_posting_id

Line 113: OracleApps.runFunction(c_function_id=>fnd_function.get_function_id(l_function_name)

109: end if;
110:
111: l_session_id:=icx_sec.getSessionCookie;
112:
113: OracleApps.runFunction(c_function_id=>fnd_function.get_function_id(l_function_name)
114: ,n_session_id=>l_session_id
115: ,c_parameters=>'addBreadCrumb=RP&retainAM=Yp_sprsn='||l_person_id);
116: END show_candidate;
117:

Line 167: if not (fnd_function.test(l_function_name)) then

163: --
164: -- test to see if the responsibility that we are running in has access to the
165: -- standard function
166: --
167: if not (fnd_function.test(l_function_name)) then
168: -- if we do not have access to the standard function, access one which
169: -- does not have the menus on it.
170: l_function_name:=l_function_name||'_EXT';
171: -- redirect to the function, passing the approval transaction id

Line 172: OracleApps.runFunction(c_function_id=>fnd_function.get_function_id(l_function_name)

168: -- if we do not have access to the standard function, access one which
169: -- does not have the menus on it.
170: l_function_name:=l_function_name||'_EXT';
171: -- redirect to the function, passing the approval transaction id
172: OracleApps.runFunction(c_function_id=>fnd_function.get_function_id(l_function_name)
173: ,n_session_id=>l_session_id
174: ,c_parameters=>'ext=Y&approvalTransactionId=' || l_transaction_id);
175: else
176: -- redirect to the function with menus, passing the approval transaction id

Line 177: OracleApps.runFunction(c_function_id=>fnd_function.get_function_id(l_function_name)

173: ,n_session_id=>l_session_id
174: ,c_parameters=>'ext=Y&approvalTransactionId=' || l_transaction_id);
175: else
176: -- redirect to the function with menus, passing the approval transaction id
177: OracleApps.runFunction(c_function_id=>fnd_function.get_function_id(l_function_name)
178: ,n_session_id=>l_session_id
179: ,c_parameters=>'ext=N&approvalTransactionId=' || l_transaction_id);
180: end if;
181: END show_approval;

Line 228: OracleApps.runFunction(c_function_id=>fnd_function.get_function_id(l_function_name)

224: (itemtype => itemtype,
225: itemkey => itemkey,
226: aname => 'IRCAPPROVALPROCESS');
227: --
228: OracleApps.runFunction(c_function_id=>fnd_function.get_function_id(l_function_name)
229: ,n_session_id=>l_session_id
230: ,c_parameters=>'correctionTransactionId=' || l_transaction_id);
231:
232: END correct_approval;