DBA Data[Home] [Help]

APPS.IRC_VACANCY_CONSIDERATIONS_BE1 dependencies on HR_UTILITY

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

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

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

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

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

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

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

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

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

87: hr_utility.set_location(l_proc,40);
88: -- no event is required, so do nothing
89: null;
90: end if;
91: hr_utility.set_location('Leaving: '||l_proc,50);
92: end create_vacancy_consideration_a;
93: end irc_vacancy_considerations_be1;