DBA Data[Home] [Help]

APPS.HR_PERSON_EXTRA_INFO_BE3 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):=' hr_person_extra_info_be3.delete_person_extra_info_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.api.person_extra_info.delete_person_extra_info';
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.api.person_extra_info.delete_person_extra_info';
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 57: hr_utility.set_location(l_proc,30);

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

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

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

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

67: hr_utility.set_location(l_proc,40);
68: -- no event is required, so do nothing
69: null;
70: end if;
71: hr_utility.set_location('Leaving: '||l_proc,50);
72: end delete_person_extra_info_a;
73: end hr_person_extra_info_be3;