DBA Data[Home] [Help]

APPS.HR_ORGANIZATION_BE1 dependencies on HR_UTILITY

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

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

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

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

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

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

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

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

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

287: hr_utility.set_location(l_proc,40);
288: -- no event is required, so do nothing
289: null;
290: end if;
291: hr_utility.set_location('Leaving: '||l_proc,50);
292: end create_org_information_a;
293: end hr_organization_be1;