DBA Data[Home] [Help]

APPS.HR_JOB_SWI dependencies on HR_UTILITY

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

106: --
107: -- Other variables
108: l_proc varchar2(72) := g_package ||'create_job';
109: Begin
110: hr_utility.set_location(' Entering:' || l_proc,10);
111: --
112: -- Issue a savepoint
113: --
114: savepoint create_job_swi;

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

232: -- messages of any type exist in the Multiple Message List.
233: -- Also disable Multiple Message Detection.
234: --
235: p_return_status := hr_multi_message.get_return_status_disable;
236: hr_utility.set_location(' Leaving:' || l_proc,20);
237: --
238: exception
239: when hr_multi_message.error_message_exist then
240: --

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

250: p_object_version_number := null;
251: p_job_definition_id := null;
252: p_name := null;
253: p_return_status := hr_multi_message.get_return_status_disable;
254: hr_utility.set_location(' Leaving:' || l_proc, 30);
255: when others then
256: --
257: -- When Multiple Message Detection is enabled catch
258: -- any Application specific or other unexpected

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

261: -- error.
262: --
263: rollback to create_job_swi;
264: if hr_multi_message.unexpected_error_add(l_proc) then
265: hr_utility.set_location(' Leaving:' || l_proc,40);
266: raise;
267: end if;
268: --
269: -- Reset IN OUT and set OUT parameters

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

272: p_object_version_number := null;
273: p_job_definition_id := null;
274: p_name := null;
275: p_return_status := hr_multi_message.get_return_status_disable;
276: hr_utility.set_location(' Leaving:' || l_proc,50);
277: end create_job;
278: -- ----------------------------------------------------------------------------
279: -- |------------------------------< update_job >------------------------------|
280: -- ----------------------------------------------------------------------------

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

378: --
379: -- Other variables
380: l_proc varchar2(72) := g_package ||'update_job';
381: Begin
382: hr_utility.set_location(' Entering:' || l_proc,10);
383: --
384: -- Issue a savepoint
385: --
386: savepoint update_job_swi;

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

514: -- messages of any type exist in the Multiple Message List.
515: -- Also disable Multiple Message Detection.
516: --
517: p_return_status := hr_multi_message.get_return_status_disable;
518: hr_utility.set_location(' Leaving:' || l_proc,20);
519: --
520: exception
521: when hr_multi_message.error_message_exist then
522: --

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

531: p_object_version_number := l_object_version_number;
532: p_job_definition_id := null;
533: p_name := null;
534: p_return_status := hr_multi_message.get_return_status_disable;
535: hr_utility.set_location(' Leaving:' || l_proc, 30);
536: when others then
537: --
538: -- When Multiple Message Detection is enabled catch
539: -- any Application specific or other unexpected

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

542: -- error.
543: --
544: rollback to update_job_swi;
545: if hr_multi_message.unexpected_error_add(l_proc) then
546: hr_utility.set_location(' Leaving:' || l_proc,40);
547: raise;
548: end if;
549: --
550: -- Reset IN OUT and set OUT parameters

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

552: p_object_version_number := l_object_version_number;
553: p_job_definition_id := null;
554: p_name := null;
555: p_return_status := hr_multi_message.get_return_status_disable;
556: hr_utility.set_location(' Leaving:' || l_proc,50);
557: end update_job;
558: end hr_job_swi;