DBA Data[Home] [Help]

APPS.HR_ORGANIZATION_BE2 dependencies on HR_UTILITY

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

57: select per_wf_events_s.nextval from dual;
58: --
59: l_proc varchar2(72):=' hr_organization_be2.update_org_information_a';
60: begin
61: hr_utility.set_location('Entering: '||l_proc,10);
62: -- check the status of the business event
63: l_event_name:='oracle.apps.per.api.organization.update_org_information';
64: l_message:=wf_event.test(l_event_name);
65: --

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

63: l_event_name:='oracle.apps.per.api.organization.update_org_information';
64: l_message:=wf_event.test(l_event_name);
65: --
66: if (l_message='MESSAGE') then
67: hr_utility.set_location(l_proc,20);
68: --
69: -- get a key for the event
70: --
71: open get_seq;

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

268: wf_event.raise(p_event_name=>l_event_name
269: ,p_event_key=>l_event_key
270: ,p_event_data=>l_event_data);
271: elsif (l_message='KEY') then
272: hr_utility.set_location(l_proc,30);
273: -- get a key for the event
274: open get_seq;
275: fetch get_seq into l_event_key;
276: close get_seq;

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

278: -- without the event data
279: wf_event.raise(p_event_name=>l_event_name
280: ,p_event_key=>l_event_key);
281: elsif (l_message='NONE') then
282: hr_utility.set_location(l_proc,40);
283: -- no event is required, so do nothing
284: null;
285: end if;
286: hr_utility.set_location('Leaving: '||l_proc,50);

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

282: hr_utility.set_location(l_proc,40);
283: -- no event is required, so do nothing
284: null;
285: end if;
286: hr_utility.set_location('Leaving: '||l_proc,50);
287: end update_org_information_a;
288: end hr_organization_be2;