DBA Data[Home] [Help]

APPS.HR_ASSIGNMENT_BEO dependencies on HR_UTILITY

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

62: select per_wf_events_s.nextval from dual;
63: --
64: l_proc varchar2(72):=' hr_assignment_beO.update_cwk_asg_criteria_a';
65: begin
66: hr_utility.set_location('Entering: '||l_proc,10);
67: -- check the status of the business event
68: l_event_name:='oracle.apps.per.api.assignment.update_cwk_asg_criteria';
69: l_message:=wf_event.test(l_event_name);
70: --

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

68: l_event_name:='oracle.apps.per.api.assignment.update_cwk_asg_criteria';
69: l_message:=wf_event.test(l_event_name);
70: --
71: if (l_message='MESSAGE') then
72: hr_utility.set_location(l_proc,20);
73: --
74: -- get a key for the event
75: --
76: open get_seq;

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

320: ,p_event_key=>l_event_key
321: ,p_event_data=>l_event_data);
322: end if;
323: elsif (l_message='KEY') then
324: hr_utility.set_location(l_proc,30);
325: -- get a key for the event
326: open get_seq;
327: fetch get_seq into l_event_key;
328: close get_seq;

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

341: wf_event.raise(p_event_name=>l_event_name
342: ,p_event_key=>l_event_key);
343: end if;
344: elsif (l_message='NONE') then
345: hr_utility.set_location(l_proc,40);
346: -- no event is required, so do nothing
347: null;
348: end if;
349: hr_utility.set_location('Leaving: '||l_proc,50);

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

345: hr_utility.set_location(l_proc,40);
346: -- no event is required, so do nothing
347: null;
348: end if;
349: hr_utility.set_location('Leaving: '||l_proc,50);
350: end update_cwk_asg_criteria_a;
351: end hr_assignment_beO;