DBA Data[Home] [Help]

APPS.ARP_PROCESS_ADJUSTMENT dependencies on AR_RECEIVABLE_APPLICATIONS

Line 386: | ar_receivable_applications.

382: | 08-SEP-95 Charlie Tomberg Created
383: | 7/16/1996 Harri Kaukovuo Bug 382421. Line level adjustment
384: | check was looking for header level
385: | applications from
386: | ar_receivable_applications.
387: +===========================================================================*/
388:
389: PROCEDURE validate_inv_line_amount(p_adj_rec IN
390: ar_adjustments%rowtype,

Line 482: FROM ar_receivable_applications ra

478: SUM(ra.amount_applied )
479: , 0
480: )
481: INTO l_line_applied
482: FROM ar_receivable_applications ra
483: WHERE applied_payment_schedule_id = p_adj_rec.payment_schedule_id
484: AND applied_customer_trx_id = p_adj_rec.customer_trx_id;
485: */
486: SELECT NVL(

Line 491: FROM ar_receivable_applications ra

487: SUM(ra.amount_applied )
488: , 0
489: )
490: INTO l_line_applied
491: FROM ar_receivable_applications ra
492: WHERE
493: ra.applied_customer_trx_id = p_adj_rec.customer_trx_id
494: AND ra.applied_customer_trx_line_id= p_adj_rec.customer_trx_line_id;
495: