DBA Data[Home] [Help]

APPS.ARP_RUN dependencies on ARP_RUN

Line 1: PACKAGE BODY arp_run AS

1: PACKAGE BODY arp_run AS
2: -- $Header: ARTERRPB.pls 120.11 2011/07/07 19:13:40 mraymond ship $
3: PG_DEBUG varchar2(1) := NVL(FND_PROFILE.value('AFLOG_ENABLED'), 'N');
4:
5: g_debug_flag VARCHAR2(4):= NVL(arp_standard.pg_prf_enable_debug, 'N');

Line 30: arp_util.print_fcn_label('arp_run.enq_trans()+');

26: AND ct.complete_flag = 'Y';
27:
28: BEGIN
29: --
30: arp_util.print_fcn_label('arp_run.enq_trans()+');
31: --
32: FOR c01_rec IN c01 LOOP
33: -- Put the message in the queue
34: arp_queue.enqueue(system.ar_rev_rec_typ(c01_rec.customer_trx_id,

Line 39: arp_util.print_fcn_label('arp_run.enq_trans()-');

35: NVL(arp_global.sysparam.org_id, 0), 'ARTERRPB', c01_rec.trx_number));
36: --
37: END LOOP;
38: --
39: arp_util.print_fcn_label('arp_run.enq_trans()-');
40: --
41: EXCEPTION
42: WHEN OTHERS THEN
43: arp_standard.debug('EXCEPTION: ' ||SQLERRM(SQLCODE));

Line 73: arp_util.print_fcn_label('arp_run.revenue_recognition()+');

69: l_org_id NUMBER;
70:
71: BEGIN
72:
73: arp_util.print_fcn_label('arp_run.revenue_recognition()+');
74:
75: select org_id
76: into l_org_id
77: from ar_system_parameters;

Line 140: arp_util.print_fcn_label('arp_run.revenue_recognition()-');

136: arp_standard.debug('revenue_recognition: ' || errbuf);
137: END IF;
138: END IF;
139:
140: arp_util.print_fcn_label('arp_run.revenue_recognition()-');
141:
142: EXCEPTION
143: WHEN g_no_more_msgs THEN
144: -- End of the queue reached.

Line 457: arp_standard.debug('arp_run.rev_rec_master()+');

453: --
454: retcode := SUCCESS;
455: --
456: IF PG_DEBUG in ('Y', 'C') THEN
457: arp_standard.debug('arp_run.rev_rec_master()+');
458: END IF;
459: --
460: l_req_data := fnd_conc_global.request_data;
461: --

Line 485: arp_standard.debug('arp_run.rev_rec_master()-');

481:
482: commit;
483:
484: IF PG_DEBUG in ('Y', 'C') THEN
485: arp_standard.debug('arp_run.rev_rec_master()-');
486: END IF;
487:
488:
489: EXCEPTION

Line 516: arp_standard.debug('arp_run.build_credit_distributions()+');

512: l_failure_count NUMBER;
513:
514: BEGIN
515: IF PG_DEBUG in ('Y', 'C') THEN
516: arp_standard.debug('arp_run.build_credit_distributions()+');
517: END IF;
518:
519: retcode := SUCCESS;
520:

Line 533: arp_standard.debug('arp_run.build_credit_distributions()-');

529: /* Gotta commit the results */
530: commit;
531:
532: IF PG_DEBUG in ('Y', 'C') 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

Line 579: arp_standard.debug('arp_run.submit_mrc_posting()+');

575: l_req_id NUMBER;
576: l_sob_type VARCHAR2(1);
577: BEGIN
578: IF PG_DEBUG in ('Y', 'C') THEN
579: arp_standard.debug('arp_run.submit_mrc_posting()+');
580: arp_standard.debug(' Submitting for primary sob : ' ||
581: arp_global.sysparam.set_of_books_id);
582:
583: END IF;

Line 656: arp_standard.debug('arp_run.submit_mrc_posting()-');

652:
653: END LOOP;
654:
655: IF PG_DEBUG in ('Y', 'C') THEN
656: arp_standard.debug('arp_run.submit_mrc_posting()-');
657: END IF;
658:
659: EXCEPTION
660: WHEN OTHERS THEN

Line 661: arp_standard.debug('EXCEPTION: arp_run.submit_mrc_posting()');

657: END IF;
658:
659: EXCEPTION
660: WHEN OTHERS THEN
661: arp_standard.debug('EXCEPTION: arp_run.submit_mrc_posting()');
662: /* retcode to -1 means ARGLTP will end in WARNING */
663: retcode := -1;
664: END submit_mrc_posting;
665:

Line 666: END arp_run;

662: /* retcode to -1 means ARGLTP will end in WARNING */
663: retcode := -1;
664: END submit_mrc_posting;
665:
666: END arp_run;