DBA Data[Home] [Help]

APPS.PER_QUALIFICATIONS_SWI dependencies on HR_MULTI_MESSAGE

Line 107: hr_multi_message.enable_message_list;

103: savepoint create_qualification_swi;
104: --
105: -- Initialise Multiple Message Detection
106: --
107: hr_multi_message.enable_message_list;
108: --
109: -- Remember IN OUT parameter IN values
110: --
111: --

Line 215: p_return_status := hr_multi_message.get_return_status_disable;

211: -- Derive the API return status value based on whether
212: -- messages of any type exist in the Multiple Message List.
213: -- Also disable Multiple Message Detection.
214: --
215: p_return_status := hr_multi_message.get_return_status_disable;
216: hr_utility.set_location(' Leaving:' || l_proc,20);
217: --
218: exception
219: when hr_multi_message.error_message_exist then

Line 219: when hr_multi_message.error_message_exist then

215: p_return_status := hr_multi_message.get_return_status_disable;
216: hr_utility.set_location(' Leaving:' || l_proc,20);
217: --
218: exception
219: when hr_multi_message.error_message_exist then
220: --
221: -- Catch the Multiple Message List exception which
222: -- indicates API processing has been aborted because
223: -- at least one message exists in the list.

Line 230: p_return_status := hr_multi_message.get_return_status_disable;

226: --
227: -- Reset IN OUT parameters and set OUT parameters
228: --
229: p_object_version_number := null;
230: p_return_status := hr_multi_message.get_return_status_disable;
231: hr_utility.set_location(' Leaving:' || l_proc, 30);
232: when others then
233: --
234: -- When Multiple Message Detection is enabled catch

Line 241: if hr_multi_message.unexpected_error_add(l_proc) then

237: -- Multiple Message List. Otherwise re-raise the
238: -- error.
239: --
240: rollback to create_qualification_swi;
241: if hr_multi_message.unexpected_error_add(l_proc) then
242: hr_utility.set_location(' Leaving:' || l_proc,40);
243: raise;
244: end if;
245: --

Line 249: p_return_status := hr_multi_message.get_return_status_disable;

245: --
246: -- Reset IN OUT and set OUT parameters
247: --
248: p_object_version_number := null;
249: p_return_status := hr_multi_message.get_return_status_disable;
250: hr_utility.set_location(' Leaving:' || l_proc,50);
251: end create_qualification;
252: -- ----------------------------------------------------------------------------
253: -- |-------------------------< delete_qualification >-------------------------|

Line 278: hr_multi_message.enable_message_list;

274: savepoint delete_qualification_swi;
275: --
276: -- Initialise Multiple Message Detection
277: --
278: hr_multi_message.enable_message_list;
279: --
280: -- Remember IN OUT parameter IN values
281: --
282: --

Line 311: p_return_status := hr_multi_message.get_return_status_disable;

307: -- Derive the API return status value based on whether
308: -- messages of any type exist in the Multiple Message List.
309: -- Also disable Multiple Message Detection.
310: --
311: p_return_status := hr_multi_message.get_return_status_disable;
312: hr_utility.set_location(' Leaving:' || l_proc,20);
313: --
314: exception
315: when hr_multi_message.error_message_exist then

Line 315: when hr_multi_message.error_message_exist then

311: p_return_status := hr_multi_message.get_return_status_disable;
312: hr_utility.set_location(' Leaving:' || l_proc,20);
313: --
314: exception
315: when hr_multi_message.error_message_exist then
316: --
317: -- Catch the Multiple Message List exception which
318: -- indicates API processing has been aborted because
319: -- at least one message exists in the list.

Line 325: p_return_status := hr_multi_message.get_return_status_disable;

321: rollback to delete_qualification_swi;
322: --
323: -- Reset IN OUT parameters and set OUT parameters
324: --
325: p_return_status := hr_multi_message.get_return_status_disable;
326: hr_utility.set_location(' Leaving:' || l_proc, 30);
327: when others then
328: --
329: -- When Multiple Message Detection is enabled catch

Line 336: if hr_multi_message.unexpected_error_add(l_proc) then

332: -- Multiple Message List. Otherwise re-raise the
333: -- error.
334: --
335: rollback to delete_qualification_swi;
336: if hr_multi_message.unexpected_error_add(l_proc) then
337: hr_utility.set_location(' Leaving:' || l_proc,40);
338: raise;
339: end if;
340: --

Line 343: p_return_status := hr_multi_message.get_return_status_disable;

339: end if;
340: --
341: -- Reset IN OUT and set OUT parameters
342: --
343: p_return_status := hr_multi_message.get_return_status_disable;
344: hr_utility.set_location(' Leaving:' || l_proc,50);
345: end delete_qualification;
346: -- ----------------------------------------------------------------------------
347: -- |-------------------------< update_qualification >-------------------------|

Line 442: hr_multi_message.enable_message_list;

438: savepoint update_qualification_swi;
439: --
440: -- Initialise Multiple Message Detection
441: --
442: hr_multi_message.enable_message_list;
443: --
444: -- Remember IN OUT parameter IN values
445: --
446: l_object_version_number := p_object_version_number;

Line 545: p_return_status := hr_multi_message.get_return_status_disable;

541: -- Derive the API return status value based on whether
542: -- messages of any type exist in the Multiple Message List.
543: -- Also disable Multiple Message Detection.
544: --
545: p_return_status := hr_multi_message.get_return_status_disable;
546: hr_utility.set_location(' Leaving:' || l_proc,20);
547: --
548: exception
549: when hr_multi_message.error_message_exist then

Line 549: when hr_multi_message.error_message_exist then

545: p_return_status := hr_multi_message.get_return_status_disable;
546: hr_utility.set_location(' Leaving:' || l_proc,20);
547: --
548: exception
549: when hr_multi_message.error_message_exist then
550: --
551: -- Catch the Multiple Message List exception which
552: -- indicates API processing has been aborted because
553: -- at least one message exists in the list.

Line 560: p_return_status := hr_multi_message.get_return_status_disable;

556: --
557: -- Reset IN OUT parameters and set OUT parameters
558: --
559: p_object_version_number := l_object_version_number;
560: p_return_status := hr_multi_message.get_return_status_disable;
561: hr_utility.set_location(' Leaving:' || l_proc, 30);
562: when others then
563: --
564: -- When Multiple Message Detection is enabled catch

Line 571: if hr_multi_message.unexpected_error_add(l_proc) then

567: -- Multiple Message List. Otherwise re-raise the
568: -- error.
569: --
570: rollback to update_qualification_swi;
571: if hr_multi_message.unexpected_error_add(l_proc) then
572: hr_utility.set_location(' Leaving:' || l_proc,40);
573: raise;
574: end if;
575: --

Line 579: p_return_status := hr_multi_message.get_return_status_disable;

575: --
576: -- Reset IN OUT and set OUT parameters
577: --
578: p_object_version_number := l_object_version_number;
579: p_return_status := hr_multi_message.get_return_status_disable;
580: hr_utility.set_location(' Leaving:' || l_proc,50);
581: end update_qualification;
582: end per_qualifications_swi;