DBA Data[Home] [Help]

APPS.IRC_SEARCH_CRITERIA_BE7 dependencies on HR_UTILITY

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

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

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

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

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

489: ,p_event_key=>l_event_key
490: ,p_event_data=>l_event_data);
491: --
492: elsif (l_message='KEY') then
493: hr_utility.set_location(l_proc,30);
494: -- get a key for the event
495: open get_seq;
496: fetch get_seq into l_event_key;
497: close get_seq;

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

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

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

504: hr_utility.set_location(l_proc,40);
505: -- no event is required, so do nothing
506: null;
507: end if;
508: hr_utility.set_location('Leaving: '||l_proc,50);
509: end create_work_choices_a;
510: end irc_search_criteria_be7;