DBA Data[Home] [Help]

APPS.PAY_BALANCE_FEEDS_BE1 dependencies on HR_UTILITY

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

24: select per_wf_events_s.nextval from dual;
25: --
26: l_proc varchar2(72):=' pay_balance_feeds_be1.create_balance_feed_a';
27: begin
28: hr_utility.set_location('Entering: '||l_proc,10);
29: -- check the status of the business event
30: l_event_name:='oracle.apps.pay.api.balance_feeds.create_balance_feed';
31: l_message:=wf_event.test(l_event_name);
32: --

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

30: l_event_name:='oracle.apps.pay.api.balance_feeds.create_balance_feed';
31: l_message:=wf_event.test(l_event_name);
32: --
33: if (l_message='MESSAGE') then
34: hr_utility.set_location(l_proc,20);
35: --
36: -- get a key for the event
37: --
38: open get_seq;

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

118: ,p_event_key=>l_event_key
119: ,p_event_data=>l_event_data);
120: end if;
121: elsif (l_message='KEY') then
122: hr_utility.set_location(l_proc,30);
123: -- get a key for the event
124: open get_seq;
125: fetch get_seq into l_event_key;
126: close get_seq;

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

139: wf_event.raise(p_event_name=>l_event_name
140: ,p_event_key=>l_event_key);
141: end if;
142: elsif (l_message='NONE') then
143: hr_utility.set_location(l_proc,40);
144: -- no event is required, so do nothing
145: null;
146: end if;
147: hr_utility.set_location('Leaving: '||l_proc,50);

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

143: hr_utility.set_location(l_proc,40);
144: -- no event is required, so do nothing
145: null;
146: end if;
147: hr_utility.set_location('Leaving: '||l_proc,50);
148: end create_balance_feed_a;
149: end pay_balance_feeds_be1;