DBA Data[Home] [Help]

APPS.IRC_SEARCH_CRITERIA_BE4 dependencies on HR_UTILITY

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

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

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

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

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

449: ,p_event_key=>l_event_key
450: ,p_event_data=>l_event_data);
451: --
452: elsif (l_message='KEY') then
453: hr_utility.set_location(l_proc,30);
454: -- get a key for the event
455: open get_seq;
456: fetch get_seq into l_event_key;
457: close get_seq;

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

460: wf_event.raise(p_event_name=>l_event_name
461: ,p_event_key=>l_event_key);
462: --
463: elsif (l_message='NONE') then
464: hr_utility.set_location(l_proc,40);
465: -- no event is required, so do nothing
466: null;
467: end if;
468: hr_utility.set_location('Leaving: '||l_proc,50);

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

464: hr_utility.set_location(l_proc,40);
465: -- no event is required, so do nothing
466: null;
467: end if;
468: hr_utility.set_location('Leaving: '||l_proc,50);
469: end create_vacancy_criteria_a;
470: end irc_search_criteria_be4;