DBA Data[Home] [Help]

APPS.HR_PERSON_EXTRA_INFO_BE1 dependencies on HR_UTILITY

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

68: select per_wf_events_s.nextval from dual;
69: --
70: l_proc varchar2(72):=' hr_person_extra_info_be1.create_person_extra_info_a';
71: begin
72: hr_utility.set_location('Entering: '||l_proc,10);
73: -- check the status of the business event
74: l_event_name:='oracle.apps.per.api.person_extra_info.create_person_extra_info';
75: l_message:=wf_event.test(l_event_name);
76: --

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

74: l_event_name:='oracle.apps.per.api.person_extra_info.create_person_extra_info';
75: l_message:=wf_event.test(l_event_name);
76: --
77: if (l_message='MESSAGE') then
78: hr_utility.set_location(l_proc,20);
79: --
80: -- get a key for the event
81: --
82: open get_seq;

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

323: wf_event.raise(p_event_name=>l_event_name
324: ,p_event_key=>l_event_key
325: ,p_event_data=>l_event_data);
326: elsif (l_message='KEY') then
327: hr_utility.set_location(l_proc,30);
328: -- get a key for the event
329: open get_seq;
330: fetch get_seq into l_event_key;
331: close get_seq;

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

333: -- without the event data
334: wf_event.raise(p_event_name=>l_event_name
335: ,p_event_key=>l_event_key);
336: elsif (l_message='NONE') then
337: hr_utility.set_location(l_proc,40);
338: -- no event is required, so do nothing
339: null;
340: end if;
341: hr_utility.set_location('Leaving: '||l_proc,50);

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

337: hr_utility.set_location(l_proc,40);
338: -- no event is required, so do nothing
339: null;
340: end if;
341: hr_utility.set_location('Leaving: '||l_proc,50);
342: end create_person_extra_info_a;
343: end hr_person_extra_info_be1;