DBA Data[Home] [Help]

APPS.HR_CONTINGENT_WORKER_BE2 dependencies on HR_UTILITY

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

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

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

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

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

119: ,p_event_key=>l_event_key
120: ,p_event_data=>l_event_data);
121: end if;
122: elsif (l_message='KEY') then
123: hr_utility.set_location(l_proc,30);
124: -- get a key for the event
125: open get_seq;
126: fetch get_seq into l_event_key;
127: close get_seq;

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

140: wf_event.raise(p_event_name=>l_event_name
141: ,p_event_key=>l_event_key);
142: end if;
143: elsif (l_message='NONE') then
144: hr_utility.set_location(l_proc,40);
145: -- no event is required, so do nothing
146: null;
147: end if;
148: hr_utility.set_location('Leaving: '||l_proc,50);

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

144: hr_utility.set_location(l_proc,40);
145: -- no event is required, so do nothing
146: null;
147: end if;
148: hr_utility.set_location('Leaving: '||l_proc,50);
149: end convert_to_cwk_a;
150: end hr_contingent_worker_be2;