DBA Data[Home] [Help]

APPS.IRC_VACANCY_CONSIDERATIONS_BE2 dependencies on HR_UTILITY

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

17: select per_wf_events_s.nextval from dual;
18: --
19: l_proc varchar2(72):=' irc_vacancy_considerations_be2.update_vacancy_consideration_a';
20: begin
21: hr_utility.set_location('Entering: '||l_proc,10);
22: -- check the status of the business event
23: l_event_name:='oracle.apps.per.irc.api.vacancy_considerations.update_vacancy_consideration';
24: l_message:=wf_event.test(l_event_name);
25: --

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

23: l_event_name:='oracle.apps.per.irc.api.vacancy_considerations.update_vacancy_consideration';
24: l_message:=wf_event.test(l_event_name);
25: --
26: if (l_message='MESSAGE') then
27: hr_utility.set_location(l_proc,20);
28: --
29: -- get a key for the event
30: --
31: open get_seq;

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

68: wf_event.raise(p_event_name=>l_event_name
69: ,p_event_key=>l_event_key
70: ,p_event_data=>l_event_data);
71: elsif (l_message='KEY') then
72: hr_utility.set_location(l_proc,30);
73: -- get a key for the event
74: open get_seq;
75: fetch get_seq into l_event_key;
76: close get_seq;

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

78: -- without the event data
79: wf_event.raise(p_event_name=>l_event_name
80: ,p_event_key=>l_event_key);
81: elsif (l_message='NONE') then
82: hr_utility.set_location(l_proc,40);
83: -- no event is required, so do nothing
84: null;
85: end if;
86: hr_utility.set_location('Leaving: '||l_proc,50);

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

82: hr_utility.set_location(l_proc,40);
83: -- no event is required, so do nothing
84: null;
85: end if;
86: hr_utility.set_location('Leaving: '||l_proc,50);
87: end update_vacancy_consideration_a;
88: end irc_vacancy_considerations_be2;