DBA Data[Home] [Help]

APPS.IRC_PARTY_BE5 dependencies on HR_UTILITY

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

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

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

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

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

464: ,p_event_key=>l_event_key
465: ,p_event_data=>l_event_data);
466: end if;
467: elsif (l_message='KEY') then
468: hr_utility.set_location(l_proc,30);
469: -- get a key for the event
470: open get_seq;
471: fetch get_seq into l_event_key;
472: close get_seq;

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

485: wf_event.raise(p_event_name=>l_event_name
486: ,p_event_key=>l_event_key);
487: end if;
488: elsif (l_message='NONE') then
489: hr_utility.set_location(l_proc,40);
490: -- no event is required, so do nothing
491: null;
492: end if;
493: hr_utility.set_location('Leaving: '||l_proc,50);

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

489: hr_utility.set_location(l_proc,40);
490: -- no event is required, so do nothing
491: null;
492: end if;
493: hr_utility.set_location('Leaving: '||l_proc,50);
494: end create_candidate_internal_a;
495: end irc_party_be5;