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.10 2006/06/16 18:58:16 hyu arrt008.sql $
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 439: arp_standard.debug('arp_run.rev_rec_master()+');

435: --
436: retcode := SUCCESS;
437: --
438: IF PG_DEBUG in ('Y', 'C') THEN
439: arp_standard.debug('arp_run.rev_rec_master()+');
440: END IF;
441: --
442: l_req_data := fnd_conc_global.request_data;
443: --

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

463:
464: commit;
465:
466: IF PG_DEBUG in ('Y', 'C') THEN
467: arp_standard.debug('arp_run.rev_rec_master()-');
468: END IF;
469:
470:
471: EXCEPTION

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

494: l_failure_count NUMBER;
495:
496: BEGIN
497: IF PG_DEBUG in ('Y', 'C') THEN
498: arp_standard.debug('arp_run.build_credit_distributions()+');
499: END IF;
500:
501: retcode := SUCCESS;
502:

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

511: /* Gotta commit the results */
512: commit;
513:
514: IF PG_DEBUG in ('Y', 'C') 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

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

557: l_req_id NUMBER;
558: l_sob_type VARCHAR2(1);
559: BEGIN
560: IF PG_DEBUG in ('Y', 'C') THEN
561: arp_standard.debug('arp_run.submit_mrc_posting()+');
562: arp_standard.debug(' Submitting for primary sob : ' ||
563: arp_global.sysparam.set_of_books_id);
564:
565: END IF;

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

634:
635: END LOOP;
636:
637: IF PG_DEBUG in ('Y', 'C') THEN
638: arp_standard.debug('arp_run.submit_mrc_posting()-');
639: END IF;
640:
641: EXCEPTION
642: WHEN OTHERS THEN

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

639: END IF;
640:
641: EXCEPTION
642: WHEN OTHERS THEN
643: arp_standard.debug('EXCEPTION: arp_run.submit_mrc_posting()');
644: /* retcode to -1 means ARGLTP will end in WARNING */
645: retcode := -1;
646: END submit_mrc_posting;
647:

Line 648: END arp_run;

644: /* retcode to -1 means ARGLTP will end in WARNING */
645: retcode := -1;
646: END submit_mrc_posting;
647:
648: END arp_run;