DBA Data[Home] [Help]

APPS.PER_ESTAB_ATTENDANCES_BE2 dependencies on HR_UTILITY

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

42: select per_wf_events_s.nextval from dual;
43: --
44: l_proc varchar2(72):=' per_estab_attendances_be2.update_attended_estab_a';
45: begin
46: hr_utility.set_location('Entering: '||l_proc,10);
47: -- check the status of the business event
48: l_event_name:='oracle.apps.per.api.estab_attendances.update_attended_estab';
49: l_message:=wf_event.test(l_event_name);
50: --

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

48: l_event_name:='oracle.apps.per.api.estab_attendances.update_attended_estab';
49: l_message:=wf_event.test(l_event_name);
50: --
51: if (l_message='MESSAGE') then
52: hr_utility.set_location(l_proc,20);
53: --
54: -- get a key for the event
55: --
56: open get_seq;

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

194: ,p_event_key=>l_event_key
195: ,p_event_data=>l_event_data);
196: --
197: elsif (l_message='KEY') then
198: hr_utility.set_location(l_proc,30);
199: -- get a key for the event
200: open get_seq;
201: fetch get_seq into l_event_key;
202: close get_seq;

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

205: wf_event.raise(p_event_name=>l_event_name
206: ,p_event_key=>l_event_key);
207: --
208: elsif (l_message='NONE') then
209: hr_utility.set_location(l_proc,40);
210: -- no event is required, so do nothing
211: null;
212: end if;
213: hr_utility.set_location('Leaving: '||l_proc,50);

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

209: hr_utility.set_location(l_proc,40);
210: -- no event is required, so do nothing
211: null;
212: end if;
213: hr_utility.set_location('Leaving: '||l_proc,50);
214: end update_attended_estab_a;
215: end per_estab_attendances_be2;