DBA Data[Home] [Help]

APPS.HR_PREVIOUS_EMPLOYMENT_BE4 dependencies on HR_UTILITY

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

87: select per_wf_events_s.nextval from dual;
88: --
89: l_proc varchar2(72):=' hr_previous_employment_be4.create_previous_job_a';
90: begin
91: hr_utility.set_location('Entering: '||l_proc,10);
92: -- check the status of the business event
93: l_event_name:='oracle.apps.per.api.previous_employment.create_previous_job';
94: l_message:=wf_event.test(l_event_name);
95: --

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

93: l_event_name:='oracle.apps.per.api.previous_employment.create_previous_job';
94: l_message:=wf_event.test(l_event_name);
95: --
96: if (l_message='MESSAGE') then
97: hr_utility.set_location(l_proc,20);
98: --
99: -- get a key for the event
100: --
101: open get_seq;

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

418: wf_event.raise(p_event_name=>l_event_name
419: ,p_event_key=>l_event_key
420: ,p_event_data=>l_event_data);
421: elsif (l_message='KEY') then
422: hr_utility.set_location(l_proc,30);
423: -- get a key for the event
424: open get_seq;
425: fetch get_seq into l_event_key;
426: close get_seq;

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

428: -- without the event data
429: wf_event.raise(p_event_name=>l_event_name
430: ,p_event_key=>l_event_key);
431: elsif (l_message='NONE') then
432: hr_utility.set_location(l_proc,40);
433: -- no event is required, so do nothing
434: null;
435: end if;
436: hr_utility.set_location('Leaving: '||l_proc,50);

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

432: hr_utility.set_location(l_proc,40);
433: -- no event is required, so do nothing
434: null;
435: end if;
436: hr_utility.set_location('Leaving: '||l_proc,50);
437: end create_previous_job_a;
438: end hr_previous_employment_be4;