DBA Data[Home] [Help]

APPS.IRC_PENDING_DATA_BE3 dependencies on HR_UTILITY

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

13: select per_wf_events_s.nextval from dual;
14: --
15: l_proc varchar2(72):=' irc_pending_data_be3.delete_pending_data_a';
16: begin
17: hr_utility.set_location('Entering: '||l_proc,10);
18: -- check the status of the business event
19: l_event_name:='oracle.apps.per.irc.api.pending_data.delete_pending_data';
20: l_message:=wf_event.test(l_event_name);
21: --

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

19: l_event_name:='oracle.apps.per.irc.api.pending_data.delete_pending_data';
20: l_message:=wf_event.test(l_event_name);
21: --
22: if (l_message='MESSAGE') then
23: hr_utility.set_location(l_proc,20);
24: --
25: -- get a key for the event
26: --
27: open get_seq;

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

49: ,p_event_key=>l_event_key
50: ,p_event_data=>l_event_data);
51: --
52: elsif (l_message='KEY') then
53: hr_utility.set_location(l_proc,30);
54: -- get a key for the event
55: open get_seq;
56: fetch get_seq into l_event_key;
57: close get_seq;

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

60: wf_event.raise(p_event_name=>l_event_name
61: ,p_event_key=>l_event_key);
62: --
63: elsif (l_message='NONE') then
64: hr_utility.set_location(l_proc,40);
65: -- no event is required, so do nothing
66: null;
67: end if;
68: hr_utility.set_location('Leaving: '||l_proc,50);

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

64: hr_utility.set_location(l_proc,40);
65: -- no event is required, so do nothing
66: null;
67: end if;
68: hr_utility.set_location('Leaving: '||l_proc,50);
69: end delete_pending_data_a;
70: end irc_pending_data_be3;