DBA Data[Home] [Help]

APPS.IRC_PARTY_BE5 dependencies on HR_UTILITY

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

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

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

105: l_event_name:='oracle.apps.per.irc.api.party.create_candidate_internal';
106: l_message:=wf_event.test(l_event_name);
107: --
108: if (l_message='MESSAGE') then
109: hr_utility.set_location(l_proc,20);
110: --
111: -- get a key for the event
112: --
113: 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: end if;
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 514: hr_utility.set_location(l_proc,40);

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

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

514: hr_utility.set_location(l_proc,40);
515: -- no event is required, so do nothing
516: null;
517: end if;
518: hr_utility.set_location('Leaving: '||l_proc,50);
519: end create_candidate_internal_a;
520: end irc_party_be5;