DBA Data[Home] [Help]

APPS.IRC_REC_TEAM_MEMBERS_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_rec_team_members_be2.update_rec_team_member_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.rec_team_members.update_rec_team_member';
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.rec_team_members.update_rec_team_member';
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 92: hr_utility.set_location(l_proc,30);

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

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

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

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

102: hr_utility.set_location(l_proc,40);
103: -- no event is required, so do nothing
104: null;
105: end if;
106: hr_utility.set_location('Leaving: '||l_proc,50);
107: end update_rec_team_member_a;
108: end irc_rec_team_members_be2;