DBA Data[Home] [Help]

APPS.PAY_MIX_ROLLBACK_PKG dependencies on PAYPLNK

Line 450: payplnk.g_payplnk_call := true;

446: end;
447:
448: -- change batch line status to 'unprocessed'
449: --
450: payplnk.g_payplnk_call := true;
451: --
452: update pay_batch_lines
453: set batch_line_status = 'U'
454: where batch_line_id = l_batch_line.batch_line_id;

Line 456: payplnk.g_payplnk_call := false;

452: update pay_batch_lines
453: set batch_line_status = 'U'
454: where batch_line_id = l_batch_line.batch_line_id;
455: --
456: payplnk.g_payplnk_call := false;
457:
458: l_assignments_processed := l_assignments_processed + 1;
459:
460: end if;

Line 475: payplnk.g_payplnk_call := true;

471: if (c_batch_entries%notfound and l_entry_exists <> 'Y') then
472: if (l_check_batch_id = 'N' or (l_check_batch_id ='Y'
473: and l_reject_ent_not_removed <> 'Y')) then
474: --
475: payplnk.g_payplnk_call := true;
476: --
477: update pay_batch_lines
478: set batch_line_status = 'U'
479: where batch_line_id = l_batch_line.batch_line_id;

Line 481: payplnk.g_payplnk_call := false;

477: update pay_batch_lines
478: set batch_line_status = 'U'
479: where batch_line_id = l_batch_line.batch_line_id;
480: --
481: payplnk.g_payplnk_call := false;
482: --
483: else
484: --
485: commit_messages;

Line 524: payplnk.run_process(l_errbuf,

520: --
521: if p_leave_batch = 'N' then
522: --
523: -- The user wants the batch to be deleted from the database.
524: payplnk.run_process(l_errbuf,
525: l_retcode,
526: l_business_group_id,
527: 'PURGE',
528: p_batch_header_id);

Line 733: payplnk.g_payplnk_call := true;

729: for l_ctl_rec in csr_control_lines(l_rec.batch_id) loop
730: purge_rollback_messages(l_ctl_rec.batch_control_id,'C');
731: end loop;
732: --
733: payplnk.g_payplnk_call := true;
734: --
735: update pay_batch_control_totals
736: set control_status = 'U'
737: where batch_id = l_rec.batch_id;

Line 739: payplnk.g_payplnk_call := false;

735: update pay_batch_control_totals
736: set control_status = 'U'
737: where batch_id = l_rec.batch_id;
738: --
739: payplnk.g_payplnk_call := false;
740: --
741: end if;
742: close csr_reset_control_total;
743: --

Line 839: payplnk.run_process(l_errbuf,

835: --
836: hr_utility.set_location('pay_mix_rollback_pkg.set_status',30);
837: --
838: -- The user wants the batch to be deleted from the database.
839: payplnk.run_process(l_errbuf,
840: l_retcode,
841: l_rec.business_group_id,
842: 'PURGE',
843: l_rec.batch_id);