DBA Data[Home] [Help]

APPS.HR_PREVIOUS_EMPLOYMENT_BE1 dependencies on HR_UTILITY

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

92: select per_wf_events_s.nextval from dual;
93: --
94: l_proc varchar2(72):=' hr_previous_employment_be1.create_previous_employer_a';
95: begin
96: hr_utility.set_location('Entering: '||l_proc,10);
97: -- check the status of the business event
98: l_event_name:='oracle.apps.per.api.previous_employment.create_previous_employer';
99: l_message:=wf_event.test(l_event_name);
100: --

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

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

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

443: wf_event.raise(p_event_name=>l_event_name
444: ,p_event_key=>l_event_key
445: ,p_event_data=>l_event_data);
446: elsif (l_message='KEY') then
447: hr_utility.set_location(l_proc,30);
448: -- get a key for the event
449: open get_seq;
450: fetch get_seq into l_event_key;
451: close get_seq;

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

453: -- without the event data
454: wf_event.raise(p_event_name=>l_event_name
455: ,p_event_key=>l_event_key);
456: elsif (l_message='NONE') then
457: hr_utility.set_location(l_proc,40);
458: -- no event is required, so do nothing
459: null;
460: end if;
461: hr_utility.set_location('Leaving: '||l_proc,50);

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

457: hr_utility.set_location(l_proc,40);
458: -- no event is required, so do nothing
459: null;
460: end if;
461: hr_utility.set_location('Leaving: '||l_proc,50);
462: end create_previous_employer_a;
463: end hr_previous_employment_be1;