DBA Data[Home] [Help]

APPS.IRC_PARTY_BE2 dependencies on HR_UTILITY

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

88: select per_wf_events_s.nextval from dual;
89: --
90: l_proc varchar2(72):=' irc_party_be2.update_registered_user_a';
91: begin
92: hr_utility.set_location('Entering: '||l_proc,10);
93: -- check the status of the business event
94: l_event_name:='oracle.apps.per.irc.api.party.update_registered_user';
95: l_message:=wf_event.test(l_event_name);
96: --

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

94: l_event_name:='oracle.apps.per.irc.api.party.update_registered_user';
95: l_message:=wf_event.test(l_event_name);
96: --
97: if (l_message='MESSAGE') then
98: hr_utility.set_location(l_proc,20);
99: --
100: -- get a key for the event
101: --
102: open get_seq;

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

423: wf_event.raise(p_event_name=>l_event_name
424: ,p_event_key=>l_event_key
425: ,p_event_data=>l_event_data);
426: elsif (l_message='KEY') then
427: hr_utility.set_location(l_proc,30);
428: -- get a key for the event
429: open get_seq;
430: fetch get_seq into l_event_key;
431: close get_seq;

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

433: -- without the event data
434: wf_event.raise(p_event_name=>l_event_name
435: ,p_event_key=>l_event_key);
436: elsif (l_message='NONE') then
437: hr_utility.set_location(l_proc,40);
438: -- no event is required, so do nothing
439: null;
440: end if;
441: hr_utility.set_location('Leaving: '||l_proc,50);

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

437: hr_utility.set_location(l_proc,40);
438: -- no event is required, so do nothing
439: null;
440: end if;
441: hr_utility.set_location('Leaving: '||l_proc,50);
442: end update_registered_user_a;
443: end irc_party_be2;