DBA Data[Home] [Help]

APPS.ARP_PROCESS_APPLICATION dependencies on ARP_DISPUTE_HISTORY

Line 8222: arp_dispute_history.DisputeHistory( p_DisputeDate => l_sysdate,

8218: if(l_new_dispute_amount <> l_trx_sum_hist_rec.amount_in_dispute)
8219: OR (l_new_dispute_amount IS NULL and l_trx_sum_hist_rec.amount_in_dispute IS NOT NULL)
8220: OR (l_new_dispute_amount IS NOT NULL and l_trx_sum_hist_rec.amount_in_dispute IS NULL)
8221: THEN
8222: arp_dispute_history.DisputeHistory( p_DisputeDate => l_sysdate,
8223: p_OldDisputeDate => l_trx_dispute_date,
8224: p_PaymentScheduleId => l_trx_sum_hist_rec.payment_schedule_id,
8225: p_OldPaymentScheduleId =>l_trx_sum_hist_rec.payment_schedule_id,
8226: p_AmountDueRemaining => l_trx_sum_hist_rec.amount_due_remaining,

Line 8293: /*Bug 5129946: Calling arp_dispute_history.DisputeHistory*/

8289: l_sysdate := SYSDATE;
8290: IF PG_DEBUG in ('Y', 'C') THEN
8291: arp_debug.debug( 'arp_process_application.update_dispute_on_trx()+' );
8292: END IF;
8293: /*Bug 5129946: Calling arp_dispute_history.DisputeHistory*/
8294: OPEN get_existing_ps(p_invoice_ps_id);
8295: FETCH get_existing_ps INTO
8296: l_ps_id,
8297: l_old_dispute_amount,

Line 8310: arp_dispute_history.DisputeHistory(p_DisputeDate => l_sysdate,

8306: if(l_new_dispute_amount <> l_old_dispute_amount)
8307: OR (l_new_dispute_amount IS NULL and l_old_dispute_amount IS NOT NULL)
8308: OR (l_new_dispute_amount IS NOT NULL and l_old_dispute_amount IS NULL)
8309: THEN
8310: arp_dispute_history.DisputeHistory(p_DisputeDate => l_sysdate,
8311: p_OldDisputeDate => l_old_dispute_date,
8312: p_PaymentScheduleId => l_ps_id,
8313: p_OldPaymentScheduleId => l_ps_id,
8314: p_AmountDueRemaining => l_amount_due_remaining,