DBA Data[Home] [Help]

APPS.IRC_APL_PRFL_SNAPSHOTS_BE1 dependencies on HR_UTILITY

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

16: select per_wf_events_s.nextval from dual;
17: --
18: l_proc varchar2(72):=' irc_apl_prfl_snapshots_be1.create_applicant_snapshot_a';
19: begin
20: hr_utility.set_location('Entering: '||l_proc,10);
21: -- check the status of the business event
22: l_event_name:='oracle.apps.per.irc.api.apl_prfl_snapshots.create_applicant_snapshot';
23: l_message:=wf_event.test(l_event_name);
24: --

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

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

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

64: ,p_event_key=>l_event_key
65: ,p_event_data=>l_event_data);
66: --
67: elsif (l_message='KEY') then
68: hr_utility.set_location(l_proc,30);
69: -- get a key for the event
70: open get_seq;
71: fetch get_seq into l_event_key;
72: close get_seq;

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

75: wf_event.raise(p_event_name=>l_event_name
76: ,p_event_key=>l_event_key);
77: --
78: elsif (l_message='NONE') then
79: hr_utility.set_location(l_proc,40);
80: -- no event is required, so do nothing
81: null;
82: end if;
83: hr_utility.set_location('Leaving: '||l_proc,50);

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

79: hr_utility.set_location(l_proc,40);
80: -- no event is required, so do nothing
81: null;
82: end if;
83: hr_utility.set_location('Leaving: '||l_proc,50);
84: end create_applicant_snapshot_a;
85: end irc_apl_prfl_snapshots_be1;