DBA Data[Home] [Help]

APPS.BEN_PD_FORMULA_PKG dependencies on HR_MULTI_MESSAGE

Line 166: hr_multi_message.enable_message_list;

162: --
163: begin
164: --
165: -- Enable multi-messaging
166: hr_multi_message.enable_message_list;
167: --
168: l_retval := fnd_transaction.synchronous(
169: timeout => l_timeout,
170: outcome => l_outcome,

Line 191: if hr_multi_message.exception_add then

187: --
188: -- Timeout error
189: hr_utility.set_message(8302, 'PQH_TX_MGR_TIMEOUT_ERROR');
190: hr_utility.set_message_token('ERROR_MESSAGE', l_message);
191: if hr_multi_message.exception_add then
192: hr_utility.raise_error;
193: end if;
194: elsif l_retval = 2 then
195: --

Line 199: if hr_multi_message.exception_add then

195: --
196: -- No transaction manager error
197: hr_utility.set_message(8302, 'PQH_TX_MGR_NOTFOUND_ERROR');
198: hr_utility.set_message_token( 'ERROR_MESSAGE', l_message);
199: if hr_multi_message.exception_add then
200: hr_utility.raise_error;
201: end if;
202: elsif l_retval = 3 then
203: --

Line 208: if hr_multi_message.exception_add then

204: -- Generic error
205: -- hr_utility.trace('!!! Generic error!!!');
206: hr_utility.set_message(8302, 'PQH_TX_MGR_OTHER_ERROR');
207: hr_utility.set_message_token( 'ERROR_MESSAGE', l_message);
208: if hr_multi_message.exception_add then
209: hr_utility.raise_error;
210: end if;
211: else
212:

Line 218: if hr_multi_message.exception_add then

214: -- Formula compilation error
215: -- Get compilation error details from fnd_message.get
216: hr_utility.set_message(805, 'FF_WIZ_BUILD_VERIFY_FAILURE');
217: hr_utility.set_message_token( 'ERROR_MESSAGE', l_message);
218: if hr_multi_message.exception_add then
219: fnd_message.raise_error;
220: end if;
221: end if;
222: end if;

Line 226: l_return_status := hr_multi_message.get_return_status_disable;

222: end if;
223: --
224: -- Get the return status and disable multi-messaging
225: -- hr_utility.trace('!!! get return status and disable mult-messaging');
226: l_return_status := hr_multi_message.get_return_status_disable;
227: return l_return_status;
228: --
229: exception
230: --

Line 231: when hr_multi_message.error_message_exist then

227: return l_return_status;
228: --
229: exception
230: --
231: when hr_multi_message.error_message_exist then
232: l_return_status := hr_multi_message.get_return_status_disable;
233: return l_return_status||'O';
234: --
235: when others then raise;

Line 232: l_return_status := hr_multi_message.get_return_status_disable;

228: --
229: exception
230: --
231: when hr_multi_message.error_message_exist then
232: l_return_status := hr_multi_message.get_return_status_disable;
233: return l_return_status||'O';
234: --
235: when others then raise;
236: --