DBA Data[Home] [Help]

APPS.HR_CONTINGENT_WORKER_BE4 dependencies on HR_UTILITY

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

96: select per_wf_events_s.nextval from dual;
97: --
98: l_proc varchar2(72):=' hr_contingent_worker_be4.terminate_placement_a';
99: begin
100: hr_utility.set_location('Entering: '||l_proc,10);
101: -- check the status of the business event
102: l_event_name:='oracle.apps.per.api.contingent_worker.terminate_placement';
103: l_message:=wf_event.test(l_event_name);
104: --

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

102: l_event_name:='oracle.apps.per.api.contingent_worker.terminate_placement';
103: l_message:=wf_event.test(l_event_name);
104: --
105: if (l_message='MESSAGE') then
106: hr_utility.set_location(l_proc,20);
107: --
108: -- get a key for the event
109: --
110: open get_seq;

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

514: ,p_event_key=>l_event_key
515: ,p_event_data=>l_event_data);
516: end if;
517: elsif (l_message='KEY') then
518: hr_utility.set_location(l_proc,30);
519: -- get a key for the event
520: open get_seq;
521: fetch get_seq into l_event_key;
522: close get_seq;

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

535: wf_event.raise(p_event_name=>l_event_name
536: ,p_event_key=>l_event_key);
537: end if;
538: elsif (l_message='NONE') then
539: hr_utility.set_location(l_proc,40);
540: -- no event is required, so do nothing
541: null;
542: end if;
543: hr_utility.set_location('Leaving: '||l_proc,50);

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

539: hr_utility.set_location(l_proc,40);
540: -- no event is required, so do nothing
541: null;
542: end if;
543: hr_utility.set_location('Leaving: '||l_proc,50);
544: end terminate_placement_a;
545: end hr_contingent_worker_be4;