DBA Data[Home] [Help]

APPS.IRC_PENDING_DATA_BE2 dependencies on HR_UTILITY

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

65: select per_wf_events_s.nextval from dual;
66: --
67: l_proc varchar2(72):=' irc_pending_data_be2.update_pending_data_a';
68: begin
69: hr_utility.set_location('Entering: '||l_proc,10);
70: -- check the status of the business event
71: l_event_name:='oracle.apps.per.irc.api.pending_data.update_pending_data';
72: l_message:=wf_event.test(l_event_name);
73: --

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

71: l_event_name:='oracle.apps.per.irc.api.pending_data.update_pending_data';
72: l_message:=wf_event.test(l_event_name);
73: --
74: if (l_message='MESSAGE') then
75: hr_utility.set_location(l_proc,20);
76: --
77: -- get a key for the event
78: --
79: open get_seq;

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

309: ,p_event_key=>l_event_key
310: ,p_event_data=>l_event_data);
311: --
312: elsif (l_message='KEY') then
313: hr_utility.set_location(l_proc,30);
314: -- get a key for the event
315: open get_seq;
316: fetch get_seq into l_event_key;
317: close get_seq;

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

320: wf_event.raise(p_event_name=>l_event_name
321: ,p_event_key=>l_event_key);
322: --
323: elsif (l_message='NONE') then
324: hr_utility.set_location(l_proc,40);
325: -- no event is required, so do nothing
326: null;
327: end if;
328: hr_utility.set_location('Leaving: '||l_proc,50);

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

324: hr_utility.set_location(l_proc,40);
325: -- no event is required, so do nothing
326: null;
327: end if;
328: hr_utility.set_location('Leaving: '||l_proc,50);
329: end update_pending_data_a;
330: end irc_pending_data_be2;