DBA Data[Home] [Help]

APPS.HR_PREVIOUS_EMPLOYMENT_BE2 dependencies on HR_UTILITY

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

89: select per_wf_events_s.nextval from dual;
90: --
91: l_proc varchar2(72):=' hr_previous_employment_be2.update_previous_employer_a';
92: begin
93: hr_utility.set_location('Entering: '||l_proc,10);
94: -- check the status of the business event
95: l_event_name:='oracle.apps.per.api.previous_employment.update_previous_employer';
96: l_message:=wf_event.test(l_event_name);
97: --

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

95: l_event_name:='oracle.apps.per.api.previous_employment.update_previous_employer';
96: l_message:=wf_event.test(l_event_name);
97: --
98: if (l_message='MESSAGE') then
99: hr_utility.set_location(l_proc,20);
100: --
101: -- get a key for the event
102: --
103: open get_seq;

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

428: wf_event.raise(p_event_name=>l_event_name
429: ,p_event_key=>l_event_key
430: ,p_event_data=>l_event_data);
431: elsif (l_message='KEY') then
432: hr_utility.set_location(l_proc,30);
433: -- get a key for the event
434: open get_seq;
435: fetch get_seq into l_event_key;
436: close get_seq;

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

438: -- without the event data
439: wf_event.raise(p_event_name=>l_event_name
440: ,p_event_key=>l_event_key);
441: elsif (l_message='NONE') then
442: hr_utility.set_location(l_proc,40);
443: -- no event is required, so do nothing
444: null;
445: end if;
446: hr_utility.set_location('Leaving: '||l_proc,50);

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

442: hr_utility.set_location(l_proc,40);
443: -- no event is required, so do nothing
444: null;
445: end if;
446: hr_utility.set_location('Leaving: '||l_proc,50);
447: end update_previous_employer_a;
448: end hr_previous_employment_be2;