DBA Data[Home] [Help]

APPS.PER_CANCEL_PLACEMENT_BE1 dependencies on HR_UTILITY

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

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

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

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

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

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

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

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

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

153: hr_utility.set_location(l_proc,40);
154: -- no event is required, so do nothing
155: null;
156: end if;
157: hr_utility.set_location('Leaving: '||l_proc,50);
158: end cancel_placement_a;
159: end per_cancel_placement_be1;