DBA Data[Home] [Help]

APPS.PER_ESTAB_ATTENDANCES_BE1 dependencies on HR_UTILITY

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

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

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

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

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

199: ,p_event_key=>l_event_key
200: ,p_event_data=>l_event_data);
201: --
202: elsif (l_message='KEY') then
203: hr_utility.set_location(l_proc,30);
204: -- get a key for the event
205: open get_seq;
206: fetch get_seq into l_event_key;
207: close get_seq;

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

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

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

214: hr_utility.set_location(l_proc,40);
215: -- no event is required, so do nothing
216: null;
217: end if;
218: hr_utility.set_location('Leaving: '||l_proc,50);
219: end create_attended_estab_a;
220: end per_estab_attendances_be1;