DBA Data[Home] [Help]

APPS.HR_JOB_API_BE2 dependencies on HR_UTILITY

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

97: select per_wf_events_s.nextval from dual;
98: --
99: l_proc varchar2(72):=' hr_job_api_be2.update_job_a';
100: begin
101: hr_utility.set_location('Entering: '||l_proc,10);
102: -- check the status of the business event
103: l_event_name:='oracle.apps.per.api.job_api.update_job';
104: l_message:=wf_event.test(l_event_name);
105: --

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

103: l_event_name:='oracle.apps.per.api.job_api.update_job';
104: l_message:=wf_event.test(l_event_name);
105: --
106: if (l_message='MESSAGE') then
107: hr_utility.set_location(l_proc,20);
108: --
109: -- get a key for the event
110: --
111: open get_seq;

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

468: wf_event.raise(p_event_name=>l_event_name
469: ,p_event_key=>l_event_key
470: ,p_event_data=>l_event_data);
471: elsif (l_message='KEY') then
472: hr_utility.set_location(l_proc,30);
473: -- get a key for the event
474: open get_seq;
475: fetch get_seq into l_event_key;
476: close get_seq;

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

478: -- without the event data
479: wf_event.raise(p_event_name=>l_event_name
480: ,p_event_key=>l_event_key);
481: elsif (l_message='NONE') then
482: hr_utility.set_location(l_proc,40);
483: -- no event is required, so do nothing
484: null;
485: end if;
486: hr_utility.set_location('Leaving: '||l_proc,50);

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

482: hr_utility.set_location(l_proc,40);
483: -- no event is required, so do nothing
484: null;
485: end if;
486: hr_utility.set_location('Leaving: '||l_proc,50);
487: end update_job_a;
488: end hr_job_api_be2;