DBA Data[Home] [Help]

APPS.IRC_REC_TEAM_MEMBERS_BE1 dependencies on HR_UTILITY

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

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

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

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

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

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

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

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

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

107: hr_utility.set_location(l_proc,40);
108: -- no event is required, so do nothing
109: null;
110: end if;
111: hr_utility.set_location('Leaving: '||l_proc,50);
112: end create_rec_team_member_a;
113: end irc_rec_team_members_be1;