DBA Data[Home] [Help]

APPS.IRC_PROF_AREA_CRITERIA_VAL_BE1 dependencies on HR_UTILITY

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

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

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

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

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

69: ,p_event_key=>l_event_key
70: ,p_event_data=>l_event_data);
71: --
72: elsif (l_message='KEY') then
73: hr_utility.set_location(l_proc,30);
74: -- get a key for the event
75: open get_seq;
76: fetch get_seq into l_event_key;
77: close get_seq;

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

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

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

84: hr_utility.set_location(l_proc,40);
85: -- no event is required, so do nothing
86: null;
87: end if;
88: hr_utility.set_location('Leaving: '||l_proc,50);
89: end create_prof_area_criteria_a;
90: end irc_prof_area_criteria_val_be1;