DBA Data[Home] [Help]

APPS.PAY_BALANCE_FEEDS_BE3 dependencies on HR_UTILITY

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

19: select per_wf_events_s.nextval from dual;
20: --
21: l_proc varchar2(72):=' pay_balance_feeds_be3.delete_balance_feed_a';
22: begin
23: hr_utility.set_location('Entering: '||l_proc,10);
24: -- check the status of the business event
25: l_event_name:='oracle.apps.pay.api.balance_feeds.delete_balance_feed';
26: l_message:=wf_event.test(l_event_name);
27: --

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

25: l_event_name:='oracle.apps.pay.api.balance_feeds.delete_balance_feed';
26: l_message:=wf_event.test(l_event_name);
27: --
28: if (l_message='MESSAGE') then
29: hr_utility.set_location(l_proc,20);
30: --
31: -- get a key for the event
32: --
33: open get_seq;

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

93: ,p_event_key=>l_event_key
94: ,p_event_data=>l_event_data);
95: end if;
96: elsif (l_message='KEY') then
97: hr_utility.set_location(l_proc,30);
98: -- get a key for the event
99: open get_seq;
100: fetch get_seq into l_event_key;
101: close get_seq;

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

114: wf_event.raise(p_event_name=>l_event_name
115: ,p_event_key=>l_event_key);
116: end if;
117: elsif (l_message='NONE') then
118: hr_utility.set_location(l_proc,40);
119: -- no event is required, so do nothing
120: null;
121: end if;
122: hr_utility.set_location('Leaving: '||l_proc,50);

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

118: hr_utility.set_location(l_proc,40);
119: -- no event is required, so do nothing
120: null;
121: end if;
122: hr_utility.set_location('Leaving: '||l_proc,50);
123: end delete_balance_feed_a;
124: end pay_balance_feeds_be3;