DBA Data[Home] [Help]

APPS.HR_PREVIOUS_EMPLOYMENT_BE8 dependencies on HR_UTILITY

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

64: select per_wf_events_s.nextval from dual;
65: --
66: l_proc varchar2(72):=' hr_previous_employment_be8.update_previous_job_usage_a';
67: begin
68: hr_utility.set_location('Entering: '||l_proc,10);
69: -- check the status of the business event
70: l_event_name:='oracle.apps.per.api.previous_employment.update_previous_job_usage';
71: l_message:=wf_event.test(l_event_name);
72: --

Line 74: hr_utility.set_location(l_proc,20);

70: l_event_name:='oracle.apps.per.api.previous_employment.update_previous_job_usage';
71: l_message:=wf_event.test(l_event_name);
72: --
73: if (l_message='MESSAGE') then
74: hr_utility.set_location(l_proc,20);
75: --
76: -- get a key for the event
77: --
78: open get_seq;

Line 307: hr_utility.set_location(l_proc,30);

303: wf_event.raise(p_event_name=>l_event_name
304: ,p_event_key=>l_event_key
305: ,p_event_data=>l_event_data);
306: elsif (l_message='KEY') then
307: hr_utility.set_location(l_proc,30);
308: -- get a key for the event
309: open get_seq;
310: fetch get_seq into l_event_key;
311: close get_seq;

Line 317: hr_utility.set_location(l_proc,40);

313: -- without the event data
314: wf_event.raise(p_event_name=>l_event_name
315: ,p_event_key=>l_event_key);
316: elsif (l_message='NONE') then
317: hr_utility.set_location(l_proc,40);
318: -- no event is required, so do nothing
319: null;
320: end if;
321: hr_utility.set_location('Leaving: '||l_proc,50);

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

317: hr_utility.set_location(l_proc,40);
318: -- no event is required, so do nothing
319: null;
320: end if;
321: hr_utility.set_location('Leaving: '||l_proc,50);
322: end update_previous_job_usage_a;
323: end hr_previous_employment_be8;