DBA Data[Home] [Help]

APPS.IRC_SEARCH_CRITERIA_BE1 dependencies on HR_UTILITY

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

104: select per_wf_events_s.nextval from dual;
105: --
106: l_proc varchar2(72):=' irc_search_criteria_be1.create_saved_search_a';
107: begin
108: hr_utility.set_location('Entering: '||l_proc,10);
109: -- check the status of the business event
110: l_event_name:='oracle.apps.per.irc.api.search_criteria.create_saved_search';
111: l_message:=wf_event.test(l_event_name);
112: --

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

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

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

504: ,p_event_key=>l_event_key
505: ,p_event_data=>l_event_data);
506: --
507: elsif (l_message='KEY') then
508: hr_utility.set_location(l_proc,30);
509: -- get a key for the event
510: open get_seq;
511: fetch get_seq into l_event_key;
512: close get_seq;

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

515: wf_event.raise(p_event_name=>l_event_name
516: ,p_event_key=>l_event_key);
517: --
518: elsif (l_message='NONE') then
519: hr_utility.set_location(l_proc,40);
520: -- no event is required, so do nothing
521: null;
522: end if;
523: hr_utility.set_location('Leaving: '||l_proc,50);

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

519: hr_utility.set_location(l_proc,40);
520: -- no event is required, so do nothing
521: null;
522: end if;
523: hr_utility.set_location('Leaving: '||l_proc,50);
524: end create_saved_search_a;
525: end irc_search_criteria_be1;