DBA Data[Home] [Help]

APPS.IRC_PARTY_BE1 dependencies on HR_UTILITY

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

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

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

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

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

454: ,p_event_key=>l_event_key
455: ,p_event_data=>l_event_data);
456: end if;
457: elsif (l_message='KEY') then
458: hr_utility.set_location(l_proc,30);
459: -- get a key for the event
460: open get_seq;
461: fetch get_seq into l_event_key;
462: close get_seq;

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

475: wf_event.raise(p_event_name=>l_event_name
476: ,p_event_key=>l_event_key);
477: end if;
478: elsif (l_message='NONE') then
479: hr_utility.set_location(l_proc,40);
480: -- no event is required, so do nothing
481: null;
482: end if;
483: hr_utility.set_location('Leaving: '||l_proc,50);

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

479: hr_utility.set_location(l_proc,40);
480: -- no event is required, so do nothing
481: null;
482: end if;
483: hr_utility.set_location('Leaving: '||l_proc,50);
484: end create_registered_user_a;
485: end irc_party_be1;