DBA Data[Home] [Help]

APPS.IRC_SEARCH_CRITERIA_BE8 dependencies on HR_UTILITY

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

100: select per_wf_events_s.nextval from dual;
101: --
102: l_proc varchar2(72):=' irc_search_criteria_be8.update_work_choices_a';
103: begin
104: hr_utility.set_location('Entering: '||l_proc,10);
105: -- check the status of the business event
106: l_event_name:='oracle.apps.per.irc.api.search_criteria.update_work_choices';
107: l_message:=wf_event.test(l_event_name);
108: --

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

106: l_event_name:='oracle.apps.per.irc.api.search_criteria.update_work_choices';
107: l_message:=wf_event.test(l_event_name);
108: --
109: if (l_message='MESSAGE') then
110: hr_utility.set_location(l_proc,20);
111: --
112: -- get a key for the event
113: --
114: open get_seq;

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

484: ,p_event_key=>l_event_key
485: ,p_event_data=>l_event_data);
486: --
487: elsif (l_message='KEY') then
488: hr_utility.set_location(l_proc,30);
489: -- get a key for the event
490: open get_seq;
491: fetch get_seq into l_event_key;
492: close get_seq;

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

495: wf_event.raise(p_event_name=>l_event_name
496: ,p_event_key=>l_event_key);
497: --
498: elsif (l_message='NONE') then
499: hr_utility.set_location(l_proc,40);
500: -- no event is required, so do nothing
501: null;
502: end if;
503: hr_utility.set_location('Leaving: '||l_proc,50);

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

499: hr_utility.set_location(l_proc,40);
500: -- no event is required, so do nothing
501: null;
502: end if;
503: hr_utility.set_location('Leaving: '||l_proc,50);
504: end update_work_choices_a;
505: end irc_search_criteria_be8;