DBA Data[Home] [Help]

APPS.HR_PERSON_BE2 dependencies on HR_UTILITY

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

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

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

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

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

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

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

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

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

72: hr_utility.set_location(l_proc,40);
73: -- no event is required, so do nothing
74: null;
75: end if;
76: hr_utility.set_location('Leaving: '||l_proc,50);
77: end delete_person_a;
78: end hr_person_be2;