DBA Data[Home] [Help]

APPS.HR_CONTINGENT_WORKER_BE1 dependencies on HR_UTILITY

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

142: select per_wf_events_s.nextval from dual;
143: --
144: l_proc varchar2(72):=' hr_contingent_worker_be1.create_cwk_a';
145: begin
146: hr_utility.set_location('Entering: '||l_proc,10);
147: -- check the status of the business event
148: l_event_name:='oracle.apps.per.api.contingent_worker.create_cwk';
149: l_message:=wf_event.test(l_event_name);
150: --

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

148: l_event_name:='oracle.apps.per.api.contingent_worker.create_cwk';
149: l_message:=wf_event.test(l_event_name);
150: --
151: if (l_message='MESSAGE') then
152: hr_utility.set_location(l_proc,20);
153: --
154: -- get a key for the event
155: --
156: open get_seq;

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

708: ,p_event_key=>l_event_key
709: ,p_event_data=>l_event_data);
710: end if;
711: elsif (l_message='KEY') then
712: hr_utility.set_location(l_proc,30);
713: -- get a key for the event
714: open get_seq;
715: fetch get_seq into l_event_key;
716: close get_seq;

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

729: wf_event.raise(p_event_name=>l_event_name
730: ,p_event_key=>l_event_key);
731: end if;
732: elsif (l_message='NONE') then
733: hr_utility.set_location(l_proc,40);
734: -- no event is required, so do nothing
735: null;
736: end if;
737: hr_utility.set_location('Leaving: '||l_proc,50);

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

733: hr_utility.set_location(l_proc,40);
734: -- no event is required, so do nothing
735: null;
736: end if;
737: hr_utility.set_location('Leaving: '||l_proc,50);
738: end create_cwk_a;
739: end hr_contingent_worker_be1;