DBA Data[Home] [Help]

APPS.PAY_BATCH_ELEMENT_LINK_PKG dependencies on HR_UTILITY

Line 70: hr_utility.set_location('Entering: '||l_proc, 5);

66: --
67: l_proc varchar2(72):= 'pay_batch_element_link_pkg.insert_row';
68: begin
69: --
70: hr_utility.set_location('Entering: '||l_proc, 5);
71: --
72: if p_batch_element_link_id is null then
73: open csr_next_ID;
74: fetch csr_next_ID into p_batch_element_link_id;

Line 190: hr_utility.set_location('Leaving: '||l_proc, 100);

186: ,p_object_status => p_object_status
187: ,p_payroll_action_id => null
188: );
189: --
190: hr_utility.set_location('Leaving: '||l_proc, 100);
191: --
192: end insert_row;
193: --
194: -------------------------------------------------------------------------------

Line 259: hr_utility.set_location('Entering: '||l_proc, 5);

255: --
256: l_proc varchar2(72):= 'pay_batch_element_link_pkg.lock_row';
257: begin
258: --
259: hr_utility.set_location('Entering: '||l_proc, 5);
260: --
261: --
262: open csr_locked_row;
263: fetch csr_locked_row into locked_row;

Line 427: hr_utility.set_location('Leaving: '||l_proc, 100);

423: ,p_object_status => p_object_status
424: ,p_default_status => 'U'
425: );
426: --
427: hr_utility.set_location('Leaving: '||l_proc, 100);
428: --
429: end lock_row;
430: --
431: --------------------------------------------------------------------------------

Line 487: hr_utility.set_location('Entering: '||l_proc, 5);

483: --
484: l_proc varchar2(72):= 'pay_batch_element_link_pkg.update_row';
485: begin
486: --
487: hr_utility.set_location('Entering: '||l_proc, 5);
488: --
489: update pay_batch_element_links
490: set
491: batch_element_link_id = p_batch_element_link_id

Line 544: hr_utility.set_location('Leaving: '||l_proc, 100);

540: if sql%notfound then
541: raise no_data_found;
542: end if;
543: --
544: hr_utility.set_location('Leaving: '||l_proc, 100);
545: --
546: end update_row;
547: --------------------------------------------------------------------------------
548: procedure delete_row

Line 557: hr_utility.set_location('Entering: '||l_proc, 5);

553: l_batch_element_link_id number;
554: l_proc varchar2(72):= 'pay_batch_element_link_pkg.delete_row';
555: begin
556: --
557: hr_utility.set_location('Entering: '||l_proc, 5);
558: --
559: select batch_element_link_id into l_batch_element_link_id
560: from pay_batch_element_links
561: where rowid = p_rowid;

Line 576: hr_utility.set_location('Leaving: '||l_proc, 100);

572: if sql%notfound then
573: raise no_data_found;
574: end if;
575: --
576: hr_utility.set_location('Leaving: '||l_proc, 100);
577: --
578: end delete_row;
579: --------------------------------------------------------------------------------
580: