DBA Data[Home] [Help]

APPS.IRC_TEMPLATE_ASSOCIATION_BE2 dependencies on HR_UTILITY

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

21: select per_wf_events_s.nextval from dual;
22: --
23: l_proc varchar2(72):=' irc_template_association_be2.update_template_association_a';
24: begin
25: hr_utility.set_location('Entering: '||l_proc,10);
26: -- check the status of the business event
27: l_event_name:='oracle.apps.per.irc.api.template_association.update_template_association';
28: l_message:=wf_event.test(l_event_name);
29: --

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

27: l_event_name:='oracle.apps.per.irc.api.template_association.update_template_association';
28: l_message:=wf_event.test(l_event_name);
29: --
30: if (l_message='MESSAGE') then
31: hr_utility.set_location(l_proc,20);
32: --
33: -- get a key for the event
34: --
35: open get_seq;

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

89: ,p_event_key=>l_event_key
90: ,p_event_data=>l_event_data);
91: --
92: elsif (l_message='KEY') then
93: hr_utility.set_location(l_proc,30);
94: -- get a key for the event
95: open get_seq;
96: fetch get_seq into l_event_key;
97: close get_seq;

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

100: wf_event.raise(p_event_name=>l_event_name
101: ,p_event_key=>l_event_key);
102: --
103: elsif (l_message='NONE') then
104: hr_utility.set_location(l_proc,40);
105: -- no event is required, so do nothing
106: null;
107: end if;
108: hr_utility.set_location('Leaving: '||l_proc,50);

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

104: hr_utility.set_location(l_proc,40);
105: -- no event is required, so do nothing
106: null;
107: end if;
108: hr_utility.set_location('Leaving: '||l_proc,50);
109: end update_template_association_a;
110: end irc_template_association_be2;