DBA Data[Home] [Help]

APPS.PER_HIERARCHY_NODES_SWI dependencies on HR_MULTI_MESSAGE

Line 107: hr_multi_message.enable_message_list;

103: savepoint create_hierarchy_nodes_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 213: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 217: when hr_multi_message.error_message_exist then

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

Line 229: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 240: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 249: p_return_status := hr_multi_message.get_return_status_disable;

245: -- Reset IN OUT and set OUT parameters
246: --
247: p_hierarchy_node_id := null;
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_hierarchy_nodes;
252: -- ----------------------------------------------------------------------------
253: -- |------------------------< delete_hierarchy_nodes >------------------------|

Line 279: hr_multi_message.enable_message_list;

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

Line 313: p_return_status := hr_multi_message.get_return_status_disable;

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

Line 317: when hr_multi_message.error_message_exist then

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

Line 328: p_return_status := hr_multi_message.get_return_status_disable;

324: --
325: -- Reset IN OUT parameters and set OUT parameters
326: --
327: p_object_version_number := l_object_version_number;
328: p_return_status := hr_multi_message.get_return_status_disable;
329: hr_utility.set_location(' Leaving:' || l_proc, 30);
330: when others then
331: --
332: -- When Multiple Message Detection is enabled catch

Line 339: if hr_multi_message.unexpected_error_add(l_proc) then

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

Line 347: p_return_status := hr_multi_message.get_return_status_disable;

343: --
344: -- Reset IN OUT and set OUT parameters
345: --
346: p_object_version_number := l_object_version_number;
347: p_return_status := hr_multi_message.get_return_status_disable;
348: hr_utility.set_location(' Leaving:' || l_proc,50);
349: end delete_hierarchy_nodes;
350: -- ----------------------------------------------------------------------------
351: -- |----------------------------------< lck >---------------------------------|

Line 374: hr_multi_message.enable_message_list;

370: savepoint lck_swi;
371: --
372: -- Initialise Multiple Message Detection
373: --
374: hr_multi_message.enable_message_list;
375: --
376: -- Remember IN OUT parameter IN values
377: --
378: --

Line 403: p_return_status := hr_multi_message.get_return_status_disable;

399: -- Derive the API return status value based on whether
400: -- messages of any type exist in the Multiple Message List.
401: -- Also disable Multiple Message Detection.
402: --
403: p_return_status := hr_multi_message.get_return_status_disable;
404: hr_utility.set_location(' Leaving:' || l_proc,20);
405: --
406: exception
407: when hr_multi_message.error_message_exist then

Line 407: when hr_multi_message.error_message_exist then

403: p_return_status := hr_multi_message.get_return_status_disable;
404: hr_utility.set_location(' Leaving:' || l_proc,20);
405: --
406: exception
407: when hr_multi_message.error_message_exist then
408: --
409: -- Catch the Multiple Message List exception which
410: -- indicates API processing has been aborted because
411: -- at least one message exists in the list.

Line 417: p_return_status := hr_multi_message.get_return_status_disable;

413: rollback to lck_swi;
414: --
415: -- Reset IN OUT parameters and set OUT parameters
416: --
417: p_return_status := hr_multi_message.get_return_status_disable;
418: hr_utility.set_location(' Leaving:' || l_proc, 30);
419: when others then
420: --
421: -- When Multiple Message Detection is enabled catch

Line 428: if hr_multi_message.unexpected_error_add(l_proc) then

424: -- Multiple Message List. Otherwise re-raise the
425: -- error.
426: --
427: rollback to lck_swi;
428: if hr_multi_message.unexpected_error_add(l_proc) then
429: hr_utility.set_location(' Leaving:' || l_proc,40);
430: raise;
431: end if;
432: --

Line 435: p_return_status := hr_multi_message.get_return_status_disable;

431: end if;
432: --
433: -- Reset IN OUT and set OUT parameters
434: --
435: p_return_status := hr_multi_message.get_return_status_disable;
436: hr_utility.set_location(' Leaving:' || l_proc,50);
437: end lck;
438: -- ----------------------------------------------------------------------------
439: -- |------------------------< update_hierarchy_nodes >------------------------|

Line 536: hr_multi_message.enable_message_list;

532: savepoint update_hierarchy_nodes_swi;
533: --
534: -- Initialise Multiple Message Detection
535: --
536: hr_multi_message.enable_message_list;
537: --
538: -- Remember IN OUT parameter IN values
539: --
540: l_object_version_number := p_object_version_number;

Line 641: p_return_status := hr_multi_message.get_return_status_disable;

637: -- Derive the API return status value based on whether
638: -- messages of any type exist in the Multiple Message List.
639: -- Also disable Multiple Message Detection.
640: --
641: p_return_status := hr_multi_message.get_return_status_disable;
642: hr_utility.set_location(' Leaving:' || l_proc,20);
643: --
644: exception
645: when hr_multi_message.error_message_exist then

Line 645: when hr_multi_message.error_message_exist then

641: p_return_status := hr_multi_message.get_return_status_disable;
642: hr_utility.set_location(' Leaving:' || l_proc,20);
643: --
644: exception
645: when hr_multi_message.error_message_exist then
646: --
647: -- Catch the Multiple Message List exception which
648: -- indicates API processing has been aborted because
649: -- at least one message exists in the list.

Line 656: p_return_status := hr_multi_message.get_return_status_disable;

652: --
653: -- Reset IN OUT parameters and set OUT parameters
654: --
655: p_object_version_number := l_object_version_number;
656: p_return_status := hr_multi_message.get_return_status_disable;
657: hr_utility.set_location(' Leaving:' || l_proc, 30);
658: when others then
659: --
660: -- When Multiple Message Detection is enabled catch

Line 667: if hr_multi_message.unexpected_error_add(l_proc) then

663: -- Multiple Message List. Otherwise re-raise the
664: -- error.
665: --
666: rollback to update_hierarchy_nodes_swi;
667: if hr_multi_message.unexpected_error_add(l_proc) then
668: hr_utility.set_location(' Leaving:' || l_proc,40);
669: raise;
670: end if;
671: --

Line 675: p_return_status := hr_multi_message.get_return_status_disable;

671: --
672: -- Reset IN OUT and set OUT parameters
673: --
674: p_object_version_number := l_object_version_number;
675: p_return_status := hr_multi_message.get_return_status_disable;
676: hr_utility.set_location(' Leaving:' || l_proc,50);
677: end update_hierarchy_nodes;
678: end per_hierarchy_nodes_swi;