DBA Data[Home] [Help]

APPS.IRC_ASG_STATUS_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_asg_status_be1.create_irc_asg_status_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.asg_status.create_irc_asg_status';
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.asg_status.create_irc_asg_status';
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 78: hr_utility.set_location(l_proc,30);

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

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

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

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

89: hr_utility.set_location(l_proc,40);
90: -- no event is required, so do nothing
91: null;
92: end if;
93: hr_utility.set_location('Leaving: '||l_proc,50);
94: end create_irc_asg_status_a;
95: end irc_asg_status_be1;