DBA Data[Home] [Help]

APPS.ARP_RUN dependencies on ARP_CREDIT_MEMO_MODULE

Line 486: then call the arp_credit_memo_module.credit_transactions function

482: Credit Transactions form as a submitted job. This is to resolve
483: some significant performance problems related to invoice accounting
484: when crediting invoices with rules. The procedure will delete
485: all non-posted REV/UNEARN/UNBILL lines (non-model ones). It will
486: then call the arp_credit_memo_module.credit_transactions function
487: to rebuild them (correctly) based on the invoice's distributions. */
488:
489: PROCEDURE build_credit_distributions (errbuf OUT NOCOPY VARCHAR2,
490: retcode OUT NOCOPY NUMBER,

Line 503: arp_credit_memo_module.credit_transactions(

499: END IF;
500:
501: retcode := SUCCESS;
502:
503: arp_credit_memo_module.credit_transactions(
504: p_customer_trx_id,
505: null,
506: p_prev_trx_id,
507: null,

Line 519: WHEN arp_credit_memo_module.no_ccid THEN

515: arp_standard.debug('arp_run.build_credit_distributions()-');
516: END IF;
517:
518: EXCEPTION
519: WHEN arp_credit_memo_module.no_ccid THEN
520: IF PG_DEBUG in ('Y', 'C') THEN
521: arp_standard.debug('EXCEPTION: credit memo module exception : no_ccid');
522: END IF;
523: RAISE;