DBA Data[Home] [Help]

APPS.PER_CHECKLISTS_SWI dependencies on HR_MULTI_MESSAGE

Line 83: hr_multi_message.enable_message_list;

79: savepoint create_checklist_swi;
80: --
81: -- Initialise Multiple Message Detection
82: --
83: hr_multi_message.enable_message_list;
84: --
85: -- Remember IN OUT parameter IN values
86: --
87: --

Line 168: p_return_status := hr_multi_message.get_return_status_disable;

164: -- Derive the API return status value based on whether
165: -- messages of any type exist in the Multiple Message List.
166: -- Also disable Multiple Message Detection.
167: --
168: p_return_status := hr_multi_message.get_return_status_disable;
169: hr_utility.set_location(' Leaving:' || l_proc,20);
170: --
171: exception
172: when hr_multi_message.error_message_exist then

Line 172: when hr_multi_message.error_message_exist then

168: p_return_status := hr_multi_message.get_return_status_disable;
169: hr_utility.set_location(' Leaving:' || l_proc,20);
170: --
171: exception
172: when hr_multi_message.error_message_exist then
173: --
174: -- Catch the Multiple Message List exception which
175: -- indicates API processing has been aborted because
176: -- at least one message exists in the list.

Line 183: p_return_status := hr_multi_message.get_return_status_disable;

179: --
180: -- Reset IN OUT parameters and set OUT parameters
181: --
182: p_object_version_number := null;
183: p_return_status := hr_multi_message.get_return_status_disable;
184: hr_utility.set_location(' Leaving:' || l_proc, 30);
185: when others then
186: --
187: -- When Multiple Message Detection is enabled catch

Line 194: if hr_multi_message.unexpected_error_add(l_proc) then

190: -- Multiple Message List. Otherwise re-raise the
191: -- error.
192: --
193: rollback to create_checklist_swi;
194: if hr_multi_message.unexpected_error_add(l_proc) then
195: hr_utility.set_location(' Leaving:' || l_proc,40);
196: raise;
197: end if;
198: --

Line 202: p_return_status := hr_multi_message.get_return_status_disable;

198: --
199: -- Reset IN OUT and set OUT parameters
200: --
201: p_object_version_number := null;
202: p_return_status := hr_multi_message.get_return_status_disable;
203: hr_utility.set_location(' Leaving:' || l_proc,50);
204: end create_checklist;
205: -- ----------------------------------------------------------------------------
206: -- |---------------------------< update_checklist >---------------------------|

Line 280: hr_multi_message.enable_message_list;

276: savepoint update_checklist_swi;
277: --
278: -- Initialise Multiple Message Detection
279: --
280: hr_multi_message.enable_message_list;
281: --
282: -- Remember IN OUT parameter IN values
283: --
284: l_object_version_number := p_object_version_number;

Line 362: p_return_status := hr_multi_message.get_return_status_disable;

358: -- Derive the API return status value based on whether
359: -- messages of any type exist in the Multiple Message List.
360: -- Also disable Multiple Message Detection.
361: --
362: p_return_status := hr_multi_message.get_return_status_disable;
363: hr_utility.set_location(' Leaving:' || l_proc,20);
364: --
365: exception
366: when hr_multi_message.error_message_exist then

Line 366: when hr_multi_message.error_message_exist then

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

Line 377: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 388: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 396: p_return_status := hr_multi_message.get_return_status_disable;

392: --
393: -- Reset IN OUT and set OUT parameters
394: --
395: p_object_version_number := l_object_version_number;
396: p_return_status := hr_multi_message.get_return_status_disable;
397: hr_utility.set_location(' Leaving:' || l_proc,50);
398: end update_checklist;
399: -- ----------------------------------------------------------------------------
400: -- |---------------------------< delete_checklist >---------------------------|

Line 425: hr_multi_message.enable_message_list;

421: savepoint delete_checklist_swi;
422: --
423: -- Initialise Multiple Message Detection
424: --
425: hr_multi_message.enable_message_list;
426: --
427: -- Remember IN OUT parameter IN values
428: --
429: --

Line 458: p_return_status := hr_multi_message.get_return_status_disable;

454: -- Derive the API return status value based on whether
455: -- messages of any type exist in the Multiple Message List.
456: -- Also disable Multiple Message Detection.
457: --
458: p_return_status := hr_multi_message.get_return_status_disable;
459: hr_utility.set_location(' Leaving:' || l_proc,20);
460: --
461: exception
462: when hr_multi_message.error_message_exist then

Line 462: when hr_multi_message.error_message_exist then

458: p_return_status := hr_multi_message.get_return_status_disable;
459: hr_utility.set_location(' Leaving:' || l_proc,20);
460: --
461: exception
462: when hr_multi_message.error_message_exist then
463: --
464: -- Catch the Multiple Message List exception which
465: -- indicates API processing has been aborted because
466: -- at least one message exists in the list.

Line 472: p_return_status := hr_multi_message.get_return_status_disable;

468: rollback to delete_checklist_swi;
469: --
470: -- Reset IN OUT parameters and set OUT parameters
471: --
472: p_return_status := hr_multi_message.get_return_status_disable;
473: hr_utility.set_location(' Leaving:' || l_proc, 30);
474: when others then
475: --
476: -- When Multiple Message Detection is enabled catch

Line 483: if hr_multi_message.unexpected_error_add(l_proc) then

479: -- Multiple Message List. Otherwise re-raise the
480: -- error.
481: --
482: rollback to delete_checklist_swi;
483: if hr_multi_message.unexpected_error_add(l_proc) then
484: hr_utility.set_location(' Leaving:' || l_proc,40);
485: raise;
486: end if;
487: --

Line 490: p_return_status := hr_multi_message.get_return_status_disable;

486: end if;
487: --
488: -- Reset IN OUT and set OUT parameters
489: --
490: p_return_status := hr_multi_message.get_return_status_disable;
491: hr_utility.set_location(' Leaving:' || l_proc,50);
492: end delete_checklist;
493: end per_checklists_swi;