DBA Data[Home] [Help]

APPS.HR_CANCEL_HIRE_BE1 dependencies on HR_UTILITY

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

23: select per_wf_events_s.nextval from dual;
24: --
25: l_proc varchar2(72):=' hr_cancel_hire_be1.cancel_hire_a';
26: begin
27: hr_utility.set_location('Entering: '||l_proc,10);
28: -- check the status of the business event
29: l_event_name:='oracle.apps.per.api.cancel_hire.cancel_hire';
30: l_message:=wf_event.test(l_event_name);
31: --

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

29: l_event_name:='oracle.apps.per.api.cancel_hire.cancel_hire';
30: l_message:=wf_event.test(l_event_name);
31: --
32: if (l_message='MESSAGE') then
33: hr_utility.set_location(l_proc,20);
34: --
35: -- get a key for the event
36: --
37: open get_seq;

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

134: wf_event.raise(p_event_name=>l_event_name
135: ,p_event_key=>l_event_key
136: ,p_event_data=>l_event_data);
137: elsif (l_message='KEY') then
138: hr_utility.set_location(l_proc,30);
139: -- get a key for the event
140: open get_seq;
141: fetch get_seq into l_event_key;
142: close get_seq;

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

144: -- without the event data
145: wf_event.raise(p_event_name=>l_event_name
146: ,p_event_key=>l_event_key);
147: elsif (l_message='NONE') then
148: hr_utility.set_location(l_proc,40);
149: -- no event is required, so do nothing
150: null;
151: end if;
152: hr_utility.set_location('Leaving: '||l_proc,50);

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

148: hr_utility.set_location(l_proc,40);
149: -- no event is required, so do nothing
150: null;
151: end if;
152: hr_utility.set_location('Leaving: '||l_proc,50);
153: end cancel_hire_a;
154: end hr_cancel_hire_be1;