DBA Data[Home] [Help]

APPS.HR_APPRAISALS_SWI dependencies on HR_MULTI_MESSAGE

Line 103: hr_multi_message.enable_message_list;

99: savepoint create_appraisal_swi;
100: --
101: -- Initialise Multiple Message Detection
102: --
103: hr_multi_message.enable_message_list;
104: --
105: -- Remember IN OUT parameter IN values
106: --
107: --

Line 208: p_return_status := hr_multi_message.get_return_status_disable;

204: -- Derive the API return status value based on whether
205: -- messages of any type exist in the Multiple Message List.
206: -- Also disable Multiple Message Detection.
207: --
208: p_return_status := hr_multi_message.get_return_status_disable;
209: hr_utility.set_location(' Leaving:' || l_proc,20);
210: --
211: exception
212: when hr_multi_message.error_message_exist then

Line 212: when hr_multi_message.error_message_exist then

208: p_return_status := hr_multi_message.get_return_status_disable;
209: hr_utility.set_location(' Leaving:' || l_proc,20);
210: --
211: exception
212: when hr_multi_message.error_message_exist then
213: --
214: -- Catch the Multiple Message List exception which
215: -- indicates API processing has been aborted because
216: -- at least one message exists in the list.

Line 223: p_return_status := hr_multi_message.get_return_status_disable;

219: --
220: -- Reset IN OUT parameters and set OUT parameters
221: --
222: p_object_version_number := null;
223: p_return_status := hr_multi_message.get_return_status_disable;
224: hr_utility.set_location(' Leaving:' || l_proc, 30);
225: when others then
226: --
227: -- When Multiple Message Detection is enabled catch

Line 234: if hr_multi_message.unexpected_error_add(l_proc) then

230: -- Multiple Message List. Otherwise re-raise the
231: -- error.
232: --
233: rollback to create_appraisal_swi;
234: if hr_multi_message.unexpected_error_add(l_proc) then
235: hr_utility.set_location(' Leaving:' || l_proc,40);
236: raise;
237: end if;
238: --

Line 242: p_return_status := hr_multi_message.get_return_status_disable;

238: --
239: -- Reset IN OUT and set OUT parameters
240: --
241: p_object_version_number := null;
242: p_return_status := hr_multi_message.get_return_status_disable;
243: hr_utility.set_location(' Leaving:' || l_proc,50);
244: end create_appraisal;
245: -- ----------------------------------------------------------------------------
246: -- |---------------------------< delete_appraisal >---------------------------|

Line 284: hr_multi_message.enable_message_list;

280: savepoint delete_appraisal_swi;
281: --
282: -- Initialise Multiple Message Detection
283: --
284: hr_multi_message.enable_message_list;
285: --
286: -- Remember IN OUT parameter IN values
287: --
288: --

Line 344: p_return_status := hr_multi_message.get_return_status_disable;

340: -- Derive the API return status value based on whether
341: -- messages of any type exist in the Multiple Message List.
342: -- Also disable Multiple Message Detection.
343: --
344: p_return_status := hr_multi_message.get_return_status_disable;
345:
346: ELSE
347:
348: -- To update appraisal record with appraisal_system_status=DELETED

Line 369: when hr_multi_message.error_message_exist then

365:
366: hr_utility.set_location(' Leaving:' || l_proc,20);
367: --
368: exception
369: when hr_multi_message.error_message_exist then
370: --
371: -- Catch the Multiple Message List exception which
372: -- indicates API processing has been aborted because
373: -- at least one message exists in the list.

Line 379: p_return_status := hr_multi_message.get_return_status_disable;

375: rollback to delete_appraisal_swi;
376: --
377: -- Reset IN OUT parameters and set OUT parameters
378: --
379: p_return_status := hr_multi_message.get_return_status_disable;
380: hr_utility.set_location(' Leaving:' || l_proc, 30);
381: when others then
382: --
383: -- When Multiple Message Detection is enabled catch

Line 390: if hr_multi_message.unexpected_error_add(l_proc) then

386: -- Multiple Message List. Otherwise re-raise the
387: -- error.
388: --
389: rollback to delete_appraisal_swi;
390: if hr_multi_message.unexpected_error_add(l_proc) then
391: hr_utility.set_location(' Leaving:' || l_proc,40);
392: raise;
393: end if;
394: --

Line 397: p_return_status := hr_multi_message.get_return_status_disable;

393: end if;
394: --
395: -- Reset IN OUT and set OUT parameters
396: --
397: p_return_status := hr_multi_message.get_return_status_disable;
398: hr_utility.set_location(' Leaving:' || l_proc,50);
399: end delete_appraisal;
400: -- ----------------------------------------------------------------------------
401: -- |---------------------------< update_appraisal >---------------------------|

Line 490: hr_multi_message.enable_message_list;

486: savepoint update_appraisal_swi;
487: --
488: -- Initialise Multiple Message Detection
489: --
490: hr_multi_message.enable_message_list;
491: --
492: -- Remember IN OUT parameter IN values
493: --
494: l_object_version_number := p_object_version_number;

Line 587: p_return_status := hr_multi_message.get_return_status_disable;

583: -- Derive the API return status value based on whether
584: -- messages of any type exist in the Multiple Message List.
585: -- Also disable Multiple Message Detection.
586: --
587: p_return_status := hr_multi_message.get_return_status_disable;
588: hr_utility.set_location(' Leaving:' || l_proc,20);
589: --
590: exception
591: when hr_multi_message.error_message_exist then

Line 591: when hr_multi_message.error_message_exist then

587: p_return_status := hr_multi_message.get_return_status_disable;
588: hr_utility.set_location(' Leaving:' || l_proc,20);
589: --
590: exception
591: when hr_multi_message.error_message_exist then
592: --
593: -- Catch the Multiple Message List exception which
594: -- indicates API processing has been aborted because
595: -- at least one message exists in the list.

Line 602: p_return_status := hr_multi_message.get_return_status_disable;

598: --
599: -- Reset IN OUT parameters and set OUT parameters
600: --
601: p_object_version_number := l_object_version_number;
602: p_return_status := hr_multi_message.get_return_status_disable;
603: hr_utility.set_location(' Leaving:' || l_proc, 30);
604: when others then
605: --
606: -- When Multiple Message Detection is enabled catch

Line 613: if hr_multi_message.unexpected_error_add(l_proc) then

609: -- Multiple Message List. Otherwise re-raise the
610: -- error.
611: --
612: rollback to update_appraisal_swi;
613: if hr_multi_message.unexpected_error_add(l_proc) then
614: hr_utility.set_location(' Leaving:' || l_proc,40);
615: raise;
616: end if;
617: --

Line 621: p_return_status := hr_multi_message.get_return_status_disable;

617: --
618: -- Reset IN OUT and set OUT parameters
619: --
620: p_object_version_number := l_object_version_number;
621: p_return_status := hr_multi_message.get_return_status_disable;
622: hr_utility.set_location(' Leaving:' || l_proc,50);
623: end update_appraisal;
624:
625: -- ----------------------------------------------------------------------------