DBA Data[Home] [Help]

APPS.IRC_POSTING_CONTENT_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_posting_content_be1.create_posting_content_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.posting_content.create_posting_content';
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.posting_content.create_posting_content';
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 448: hr_utility.set_location(l_proc,30);

444: ,p_event_key=>l_event_key
445: ,p_event_data=>l_event_data);
446: --
447: elsif (l_message='KEY') then
448: hr_utility.set_location(l_proc,30);
449: -- get a key for the event
450: open get_seq;
451: fetch get_seq into l_event_key;
452: close get_seq;

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

455: wf_event.raise(p_event_name=>l_event_name
456: ,p_event_key=>l_event_key);
457: --
458: elsif (l_message='NONE') then
459: hr_utility.set_location(l_proc,40);
460: -- no event is required, so do nothing
461: null;
462: end if;
463: hr_utility.set_location('Leaving: '||l_proc,50);

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

459: hr_utility.set_location(l_proc,40);
460: -- no event is required, so do nothing
461: null;
462: end if;
463: hr_utility.set_location('Leaving: '||l_proc,50);
464: end create_posting_content_a;
465: end irc_posting_content_be1;