DBA Data[Home] [Help]

APPS.HR_ASSIGNMENT_BEP 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_assignment_beP.delete_assignment_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.assignment.delete_assignment';
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.assignment.delete_assignment';
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 152: hr_utility.set_location(l_proc,30);

148: wf_event.raise(p_event_name=>l_event_name
149: ,p_event_key=>l_event_key
150: ,p_event_data=>l_event_data);
151: elsif (l_message='KEY') then
152: hr_utility.set_location(l_proc,30);
153: -- get a key for the event
154: open get_seq;
155: fetch get_seq into l_event_key;
156: close get_seq;

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

158: -- without the event data
159: wf_event.raise(p_event_name=>l_event_name
160: ,p_event_key=>l_event_key);
161: elsif (l_message='NONE') then
162: hr_utility.set_location(l_proc,40);
163: -- no event is required, so do nothing
164: null;
165: end if;
166: hr_utility.set_location('Leaving: '||l_proc,50);

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

162: hr_utility.set_location(l_proc,40);
163: -- no event is required, so do nothing
164: null;
165: end if;
166: hr_utility.set_location('Leaving: '||l_proc,50);
167: end delete_assignment_a;
168: end hr_assignment_beP;