DBA Data[Home] [Help]

APPS.HR_ASSIGNMENT_BEN dependencies on HR_UTILITY

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

151: select per_wf_events_s.nextval from dual;
152: --
153: l_proc varchar2(72):=' hr_assignment_beN.create_secondary_cwk_asg_a';
154: begin
155: hr_utility.set_location('Entering: '||l_proc,10);
156: -- check the status of the business event
157: l_event_name:='oracle.apps.per.api.assignment.create_secondary_cwk_asg';
158: l_message:=wf_event.test(l_event_name);
159: --

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

157: l_event_name:='oracle.apps.per.api.assignment.create_secondary_cwk_asg';
158: l_message:=wf_event.test(l_event_name);
159: --
160: if (l_message='MESSAGE') then
161: hr_utility.set_location(l_proc,20);
162: --
163: -- get a key for the event
164: --
165: open get_seq;

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

757: ,p_event_key=>l_event_key
758: ,p_event_data=>l_event_data);
759: end if;
760: elsif (l_message='KEY') then
761: hr_utility.set_location(l_proc,30);
762: -- get a key for the event
763: open get_seq;
764: fetch get_seq into l_event_key;
765: close get_seq;

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

778: wf_event.raise(p_event_name=>l_event_name
779: ,p_event_key=>l_event_key);
780: end if;
781: elsif (l_message='NONE') then
782: hr_utility.set_location(l_proc,40);
783: -- no event is required, so do nothing
784: null;
785: end if;
786: hr_utility.set_location('Leaving: '||l_proc,50);

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

782: hr_utility.set_location(l_proc,40);
783: -- no event is required, so do nothing
784: null;
785: end if;
786: hr_utility.set_location('Leaving: '||l_proc,50);
787: end create_secondary_cwk_asg_a;
788: end hr_assignment_beN;