DBA Data[Home] [Help]

APPS.IRC_LOCATION_CRITERIA_VAL_BE2 dependencies on HR_UTILITY

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

14: select per_wf_events_s.nextval from dual;
15: --
16: l_proc varchar2(72):=' irc_location_criteria_val_be2.delete_location_criteria_a';
17: begin
18: hr_utility.set_location('Entering: '||l_proc,10);
19: -- check the status of the business event
20: l_event_name:='oracle.apps.per.irc.api.location_criteria_val.delete_location_criteria';
21: l_message:=wf_event.test(l_event_name);
22: --

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

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

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

54: ,p_event_key=>l_event_key
55: ,p_event_data=>l_event_data);
56: --
57: elsif (l_message='KEY') then
58: hr_utility.set_location(l_proc,30);
59: -- get a key for the event
60: open get_seq;
61: fetch get_seq into l_event_key;
62: close get_seq;

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

65: wf_event.raise(p_event_name=>l_event_name
66: ,p_event_key=>l_event_key);
67: --
68: elsif (l_message='NONE') then
69: hr_utility.set_location(l_proc,40);
70: -- no event is required, so do nothing
71: null;
72: end if;
73: hr_utility.set_location('Leaving: '||l_proc,50);

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

69: hr_utility.set_location(l_proc,40);
70: -- no event is required, so do nothing
71: null;
72: end if;
73: hr_utility.set_location('Leaving: '||l_proc,50);
74: end delete_location_criteria_a;
75: end irc_location_criteria_val_be2;