DBA Data[Home] [Help]

APPS.HR_CONTINGENT_WORKER_BE5 dependencies on HR_UTILITY

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

17: select per_wf_events_s.nextval from dual;
18: --
19: l_proc varchar2(72):=' hr_contingent_worker_be5.reverse_terminate_placement_a';
20: begin
21: hr_utility.set_location('Entering: '||l_proc,10);
22: -- check the status of the business event
23: l_event_name:='oracle.apps.per.api.contingent_worker.reverse_terminate_placement';
24: l_message:=wf_event.test(l_event_name);
25: --

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

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

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

87: ,p_event_key=>l_event_key
88: ,p_event_data=>l_event_data);
89: end if;
90: elsif (l_message='KEY') then
91: hr_utility.set_location(l_proc,30);
92: -- get a key for the event
93: open get_seq;
94: fetch get_seq into l_event_key;
95: close get_seq;

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

108: wf_event.raise(p_event_name=>l_event_name
109: ,p_event_key=>l_event_key);
110: end if;
111: elsif (l_message='NONE') then
112: hr_utility.set_location(l_proc,40);
113: -- no event is required, so do nothing
114: null;
115: end if;
116: hr_utility.set_location('Leaving: '||l_proc,50);

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

112: hr_utility.set_location(l_proc,40);
113: -- no event is required, so do nothing
114: null;
115: end if;
116: hr_utility.set_location('Leaving: '||l_proc,50);
117: end reverse_terminate_placement_a;
118: end hr_contingent_worker_be5;