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 80: hr_utility.set_location(l_proc,30);

76: wf_event.raise(p_event_name=>l_event_name
77: ,p_event_key=>l_event_key
78: ,p_event_data=>l_event_data);
79: elsif (l_message='KEY') then
80: hr_utility.set_location(l_proc,30);
81: -- get a key for the event
82: open get_seq;
83: fetch get_seq into l_event_key;
84: close get_seq;

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

86: -- without the event data
87: wf_event.raise(p_event_name=>l_event_name
88: ,p_event_key=>l_event_key);
89: elsif (l_message='NONE') then
90: hr_utility.set_location(l_proc,40);
91: -- no event is required, so do nothing
92: null;
93: end if;
94: hr_utility.set_location('Leaving: '||l_proc,50);

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

90: hr_utility.set_location(l_proc,40);
91: -- no event is required, so do nothing
92: null;
93: end if;
94: hr_utility.set_location('Leaving: '||l_proc,50);
95: end reverse_terminate_placement_a;
96: end hr_contingent_worker_be5;