DBA Data[Home] [Help]

APPS.HR_PERSON_ADDRESS_BE3 dependencies on HR_UTILITY

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

62: select per_wf_events_s.nextval from dual;
63: --
64: l_proc varchar2(72):=' hr_person_address_be3.update_pers_addr_with_style_a';
65: begin
66: hr_utility.set_location('Entering: '||l_proc,10);
67: -- check the status of the business event
68: l_event_name:='oracle.apps.per.api.person_address.update_pers_addr_with_style';
69: l_message:=wf_event.test(l_event_name);
70: --

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

68: l_event_name:='oracle.apps.per.api.person_address.update_pers_addr_with_style';
69: l_message:=wf_event.test(l_event_name);
70: --
71: if (l_message='MESSAGE') then
72: hr_utility.set_location(l_proc,20);
73: --
74: -- get a key for the event
75: --
76: open get_seq;

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

297: wf_event.raise(p_event_name=>l_event_name
298: ,p_event_key=>l_event_key
299: ,p_event_data=>l_event_data);
300: elsif (l_message='KEY') then
301: hr_utility.set_location(l_proc,30);
302: -- get a key for the event
303: open get_seq;
304: fetch get_seq into l_event_key;
305: close get_seq;

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

307: -- without the event data
308: wf_event.raise(p_event_name=>l_event_name
309: ,p_event_key=>l_event_key);
310: elsif (l_message='NONE') then
311: hr_utility.set_location(l_proc,40);
312: -- no event is required, so do nothing
313: null;
314: end if;
315: hr_utility.set_location('Leaving: '||l_proc,50);

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

311: hr_utility.set_location(l_proc,40);
312: -- no event is required, so do nothing
313: null;
314: end if;
315: hr_utility.set_location('Leaving: '||l_proc,50);
316: end update_pers_addr_with_style_a;
317: end hr_person_address_be3;