DBA Data[Home] [Help]

APPS.PER_CONTACT_RELATIONSHIP_SWI dependencies on HR_UTILITY

Line 103: hr_utility.set_location(' Entering:' || l_proc,10);

99: l_orig_hire_warning boolean;
100:
101: begin
102:
103: hr_utility.set_location(' Entering:' || l_proc,10);
104: --
105: -- Issue a savepoint
106: --
107: savepoint per_ctr_swi_ins;

Line 221: hr_utility.set_location(' Leaving:' || l_proc,20);

217: rollback to per_ctr_swi_ins;
218: End If;
219: --
220: p_return_status := hr_multi_message.get_return_status_disable;
221: hr_utility.set_location(' Leaving:' || l_proc,20);
222: --
223: exception
224: when hr_multi_message.error_message_exist then
225: --

Line 236: hr_utility.set_location(' Leaving:' || l_proc, 30);

232: -- Reset IN OUT parameters and set OUT parameters
233: --
234: p_object_version_number := null;
235: p_return_status := hr_multi_message.get_return_status_disable;
236: hr_utility.set_location(' Leaving:' || l_proc, 30);
237: when others then
238: --
239: -- When Multiple Message Detection is enabled catch
240: -- any Application specific or other unexpected

Line 247: hr_utility.set_location(' Leaving:' || l_proc,40);

243: -- error.
244: --
245: rollback to per_ctr_swi_ins;
246: if hr_multi_message.unexpected_error_add(l_proc) then
247: hr_utility.set_location(' Leaving:' || l_proc,40);
248: raise;
249: end if;
250: --
251: -- Reset IN OUT and set OUT parameters

Line 255: hr_utility.set_location(' Leaving:' || l_proc,50);

251: -- Reset IN OUT and set OUT parameters
252: --
253: p_object_version_number := null;
254: p_return_status := hr_multi_message.get_return_status_disable;
255: hr_utility.set_location(' Leaving:' || l_proc,50);
256:
257: end ins;
258:
259: -- ----------------------------------------------------------------------------

Line 340: hr_utility.set_location(' Entering:' || l_proc,10);

336:
337: l_proc varchar2(72) := g_package ||' upd';
338:
339: begin
340: hr_utility.set_location(' Entering:' || l_proc,10);
341: --
342: -- Issue a savepoint
343: --
344: savepoint per_ctr_swi_upd;

Line 427: hr_utility.set_location(' Leaving:' || l_proc,20);

423: rollback to per_ctr_swi_upd;
424: End If;
425: --
426: p_return_status := hr_multi_message.get_return_status_disable;
427: hr_utility.set_location(' Leaving:' || l_proc,20);
428: --
429: exception
430: when hr_multi_message.error_message_exist then
431: --

Line 437: hr_utility.set_location(' Leaving:' || l_proc, 30);

433: --
434: --
435: p_object_version_number := l_object_version_number;
436: p_return_status := hr_multi_message.get_return_status_disable;
437: hr_utility.set_location(' Leaving:' || l_proc, 30);
438:
439: when others then
440: --
441: rollback to per_ctr_swi_upd;

Line 444: hr_utility.set_location(' Leaving:' || l_proc,40);

440: --
441: rollback to per_ctr_swi_upd;
442:
443: if hr_multi_message.unexpected_error_add(l_proc) then
444: hr_utility.set_location(' Leaving:' || l_proc,40);
445: raise;
446: end if;
447: --
448: p_object_version_number := l_object_version_number;

Line 450: hr_utility.set_location(' Leaving:' || l_proc,50);

446: end if;
447: --
448: p_object_version_number := l_object_version_number;
449: p_return_status := hr_multi_message.get_return_status_disable;
450: hr_utility.set_location(' Leaving:' || l_proc,50);
451:
452: end upd;
453:
454: -- ----------------------------------------------------------------------------

Line 476: hr_utility.set_location(' Entering:' || l_proc,10);

472: l_proc varchar2(72) := g_package ||'del';
473:
474: begin
475:
476: hr_utility.set_location(' Entering:' || l_proc,10);
477: -- Issue a savepoint
478: savepoint per_ctr_swi_del;
479: -- Initialise Multiple Message Detection
480: hr_multi_message.enable_message_list;

Line 496: hr_utility.set_location(' Leaving:' || l_proc,20);

492: rollback to delete_questionnaire_swi;
493: End If;
494:
495: p_return_status := hr_multi_message.get_return_status_disable;
496: hr_utility.set_location(' Leaving:' || l_proc,20);
497:
498: exception
499: when hr_multi_message.error_message_exist then
500: --

Line 510: hr_utility.set_location(' Leaving:' || l_proc, 30);

506: --
507: -- Reset IN OUT parameters and set OUT parameters
508: --
509: p_return_status := hr_multi_message.get_return_status_disable;
510: hr_utility.set_location(' Leaving:' || l_proc, 30);
511: when others then
512: --
513: -- When Multiple Message Detection is enabled catch
514: -- any Application specific or other unexpected

Line 521: hr_utility.set_location(' Leaving:' || l_proc,40);

517: -- error.
518: --
519: rollback to per_ctr_swi_del;
520: if hr_multi_message.unexpected_error_add(l_proc) then
521: hr_utility.set_location(' Leaving:' || l_proc,40);
522: raise;
523: end if;
524: --
525: -- Reset IN OUT and set OUT parameters

Line 528: hr_utility.set_location(' Leaving:' || l_proc,50);

524: --
525: -- Reset IN OUT and set OUT parameters
526: --
527: p_return_status := hr_multi_message.get_return_status_disable;
528: hr_utility.set_location(' Leaving:' || l_proc,50);
529: end del;
530:
531: END per_contact_relationship_swi;