DBA Data[Home] [Help]

APPS.ARP_RUN dependencies on ARP_CREDIT_MEMO_MODULE

Line 504: then call the arp_credit_memo_module.credit_transactions function

500: Credit Transactions form as a submitted job. This is to resolve
501: some significant performance problems related to invoice accounting
502: when crediting invoices with rules. The procedure will delete
503: all non-posted REV/UNEARN/UNBILL lines (non-model ones). It will
504: then call the arp_credit_memo_module.credit_transactions function
505: to rebuild them (correctly) based on the invoice's distributions. */
506:
507: PROCEDURE build_credit_distributions (errbuf OUT NOCOPY VARCHAR2,
508: retcode OUT NOCOPY NUMBER,

Line 521: arp_credit_memo_module.credit_transactions(

517: END IF;
518:
519: retcode := SUCCESS;
520:
521: arp_credit_memo_module.credit_transactions(
522: p_customer_trx_id,
523: null,
524: p_prev_trx_id,
525: null,

Line 537: WHEN arp_credit_memo_module.no_ccid THEN

533: arp_standard.debug('arp_run.build_credit_distributions()-');
534: END IF;
535:
536: EXCEPTION
537: WHEN arp_credit_memo_module.no_ccid THEN
538: IF PG_DEBUG in ('Y', 'C') THEN
539: arp_standard.debug('EXCEPTION: credit memo module exception : no_ccid');
540: END IF;
541: RAISE;