DBA Data[Home] [Help]

APPS.HR_JOB_API_BE3 dependencies on HR_UTILITY

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

15: select per_wf_events_s.nextval from dual;
16: --
17: l_proc varchar2(72):=' hr_job_api_be3.delete_job_a';
18: begin
19: hr_utility.set_location('Entering: '||l_proc,10);
20: -- check the status of the business event
21: l_event_name:='oracle.apps.per.api.job_api.delete_job';
22: l_message:=wf_event.test(l_event_name);
23: --

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

21: l_event_name:='oracle.apps.per.api.job_api.delete_job';
22: l_message:=wf_event.test(l_event_name);
23: --
24: if (l_message='MESSAGE') then
25: hr_utility.set_location(l_proc,20);
26: --
27: -- get a key for the event
28: --
29: open get_seq;

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

62: wf_event.raise(p_event_name=>l_event_name
63: ,p_event_key=>l_event_key
64: ,p_event_data=>l_event_data);
65: elsif (l_message='KEY') then
66: hr_utility.set_location(l_proc,30);
67: -- get a key for the event
68: open get_seq;
69: fetch get_seq into l_event_key;
70: close get_seq;

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

72: -- without the event data
73: wf_event.raise(p_event_name=>l_event_name
74: ,p_event_key=>l_event_key);
75: elsif (l_message='NONE') then
76: hr_utility.set_location(l_proc,40);
77: -- no event is required, so do nothing
78: null;
79: end if;
80: hr_utility.set_location('Leaving: '||l_proc,50);

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

76: hr_utility.set_location(l_proc,40);
77: -- no event is required, so do nothing
78: null;
79: end if;
80: hr_utility.set_location('Leaving: '||l_proc,50);
81: end delete_job_a;
82: end hr_job_api_be3;