DBA Data[Home] [Help]

APPS.HR_PERSON_SWI dependencies on HR_UTILITY

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

175: between hzp.effective_start_date
176: and nvl(hzp.effective_end_date,hr_api.g_eot);
177: --
178: Begin
179: hr_utility.set_location(' Entering:' || l_proc,10);
180: --
181: -- Issue a savepoint
182: --
183: savepoint update_person_swi;

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

383: -- messages of any type exist in the Multiple Message List.
384: -- Also disable Multiple Message Detection.
385: --
386: p_return_status := hr_multi_message.get_return_status_disable;
387: hr_utility.set_location(' Leaving:' || l_proc,20);
388: --
389: exception
390: when hr_multi_message.error_message_exist then
391: --

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

403: p_effective_end_date := null;
404: p_full_name := null;
405: p_comment_id := null;
406: p_return_status := hr_multi_message.get_return_status_disable;
407: hr_utility.set_location(' Leaving:' || l_proc, 30);
408: when others then
409: --
410: -- When Multiple Message Detection is enabled catch
411: -- any Application specific or other unexpected

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

414: -- error.
415: --
416: rollback to update_person_swi;
417: if hr_multi_message.unexpected_error_add(l_proc) then
418: hr_utility.set_location(' Leaving:' || l_proc,40);
419: raise;
420: end if;
421: --
422: -- Reset IN OUT and set OUT parameters

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

427: p_effective_end_date := null;
428: p_full_name := null;
429: p_comment_id := null;
430: p_return_status := hr_multi_message.get_return_status_disable;
431: hr_utility.set_location(' Leaving:' || l_proc,50);
432: end update_person;
433: end hr_person_swi;