DBA Data[Home] [Help]

APPS.ARP_PROCESS_MISC_RECEIPTS dependencies on ARP_DEBUG

Line 207: arp_debug.debug('arp_process_misc_receipts.update_misc_receipt()+');

203:
204: BEGIN
205:
206: IF PG_DEBUG in ('Y', 'C') THEN
207: arp_debug.debug('arp_process_misc_receipts.update_misc_receipt()+');
208: arp_debug.debug('update_misc_receipt: ' || '*****TAX RATE ' || TO_CHAR(p_tax_rate));
209: END IF;
210:
211: -- fetch and lock existing records from database for update

Line 208: arp_debug.debug('update_misc_receipt: ' || '*****TAX RATE ' || TO_CHAR(p_tax_rate));

204: BEGIN
205:
206: IF PG_DEBUG in ('Y', 'C') THEN
207: arp_debug.debug('arp_process_misc_receipts.update_misc_receipt()+');
208: arp_debug.debug('update_misc_receipt: ' || '*****TAX RATE ' || TO_CHAR(p_tax_rate));
209: END IF;
210:
211: -- fetch and lock existing records from database for update
212:

Line 235: arp_debug.debug( 'Receipt Date has changed. Old: ' || to_char(l_cr_rec.receipt_date, 'DD-MON-YYYY') || ' New: ' || to_char(p_receipt_date));

231:
232: IF (l_cr_rec.receipt_date <> p_receipt_date) THEN
233: l_receipt_date_changed_flag := TRUE;
234: IF PG_DEBUG in ('Y', 'C') THEN
235: arp_debug.debug( 'Receipt Date has changed. Old: ' || to_char(l_cr_rec.receipt_date, 'DD-MON-YYYY') || ' New: ' || to_char(p_receipt_date));
236: END IF;
237: ELSE
238: l_receipt_date_changed_flag := FALSE;
239: END IF;

Line 251: arp_debug.debug( 'GL Date has changed. Old: ' || to_char(l_crh_rec.gl_date, 'DD-MON-YYYY') || ' New: ' || to_char(p_gl_date));

247:
248: IF (l_crh_rec.gl_date <> p_gl_date) THEN
249: l_gl_date_changed_flag := TRUE;
250: IF PG_DEBUG in ('Y', 'C') THEN
251: arp_debug.debug( 'GL Date has changed. Old: ' || to_char(l_crh_rec.gl_date, 'DD-MON-YYYY') || ' New: ' || to_char(p_gl_date));
252: END IF;
253:
254: ELSE
255: l_gl_date_changed_flag := FALSE;

Line 296: arp_debug.debug('*****BEGIN UPDATE cash_receipt_record ');

292: END IF;
293:
294: -- update cash receipt record:
295: IF PG_DEBUG in ('Y', 'C') THEN
296: arp_debug.debug('*****BEGIN UPDATE cash_receipt_record ');
297: END IF;
298:
299: l_cr_rec.amount := p_amount;
300: l_cr_rec.receivables_trx_id := p_receivables_trx_id;

Line 356: arp_debug.debug(' *********AFTER UPDATE CR record: tax_rate' || TO_CHAR(l_cr_rec.tax_rate));

352: l_cr_rec.global_attribute20 := p_global_attribute20;
353: l_cr_rec.global_attribute_category := p_global_attribute_category;
354: l_cr_rec.legal_entity_id := p_legal_entity_id;
355: IF PG_DEBUG in ('Y', 'C') THEN
356: arp_debug.debug(' *********AFTER UPDATE CR record: tax_rate' || TO_CHAR(l_cr_rec.tax_rate));
357: END IF;
358: arp_cash_receipts_pkg.update_p(l_cr_rec);
359:
360:

Line 472: arp_debug.debug( 'Update Misc Cash Receipt start () +');

468: IF ((p_reversal_date IS NULL) AND (p_amount <> 0) ) THEN
469:
470: -- Call accounting entry library begins
471: IF PG_DEBUG in ('Y', 'C') THEN
472: arp_debug.debug( 'Update Misc Cash Receipt start () +');
473: END IF;
474:
475: l_ae_doc_rec.document_type := 'RECEIPT';
476: l_ae_doc_rec.document_id := l_cr_rec.cash_receipt_id;

Line 488: arp_debug.debug( 'Update Misc Cash Receipt start () -');

484: arp_acct_main.Delete_Acct_Entry(l_ae_doc_rec);
485: arp_acct_main.Create_Acct_Entry(l_ae_doc_rec);
486:
487: IF PG_DEBUG in ('Y', 'C') THEN
488: arp_debug.debug( 'Update Misc Cash Receipt start () -');
489: END IF;
490: END IF;
491: END IF;
492:

Line 529: arp_debug.debug( 'Regular Reversal required.');

525:
526: IF (p_reversal_date IS NOT NULL AND
527: l_cr_rec.reversal_date IS NULL) THEN
528: IF PG_DEBUG in ('Y', 'C') THEN
529: arp_debug.debug( 'Regular Reversal required.');
530: END IF;
531:
532: arp_reverse_receipt.reverse(
533: l_cr_rec.cash_receipt_id,

Line 614: arp_debug.debug('EXCEPTION: arp_process_misc_receipts.update_misc_receipt');

610:
611: EXCEPTION
612: WHEN OTHERS THEN
613: IF PG_DEBUG in ('Y', 'C') THEN
614: arp_debug.debug('EXCEPTION: arp_process_misc_receipts.update_misc_receipt');
615: END IF;
616: RAISE;
617:
618: IF PG_DEBUG in ('Y', 'C') THEN

Line 619: arp_debug.debug('arp_process_misc_receipts.update_misc_receipt()-');

615: END IF;
616: RAISE;
617:
618: IF PG_DEBUG in ('Y', 'C') THEN
619: arp_debug.debug('arp_process_misc_receipts.update_misc_receipt()-');
620: END IF;
621:
622: END update_misc_receipt;
623:

Line 760: arp_debug.debug('arp_process_misc_receipts.insert_misc_receipt()+');

756:
757: BEGIN
758:
759: IF PG_DEBUG in ('Y', 'C') THEN
760: arp_debug.debug('arp_process_misc_receipts.insert_misc_receipt()+');
761: END IF;
762:
763: -- check if calling form is compatible with entity handler
764:

Line 787: arp_debug.debug( 'Creation status = ' || l_creation_status);

783: l_ccid,
784: l_override_remit_account_flag);
785:
786: IF PG_DEBUG in ('Y', 'C') THEN
787: arp_debug.debug( 'Creation status = ' || l_creation_status);
788: arp_debug.debug( 'Source Type = ' || l_source_type);
789: arp_debug.debug( 'ccid = ' || l_ccid);
790: END IF;
791:

Line 788: arp_debug.debug( 'Source Type = ' || l_source_type);

784: l_override_remit_account_flag);
785:
786: IF PG_DEBUG in ('Y', 'C') THEN
787: arp_debug.debug( 'Creation status = ' || l_creation_status);
788: arp_debug.debug( 'Source Type = ' || l_source_type);
789: arp_debug.debug( 'ccid = ' || l_ccid);
790: END IF;
791:
792: -- create ar_cash_receipt record:

Line 789: arp_debug.debug( 'ccid = ' || l_ccid);

785:
786: IF PG_DEBUG in ('Y', 'C') THEN
787: arp_debug.debug( 'Creation status = ' || l_creation_status);
788: arp_debug.debug( 'Source Type = ' || l_source_type);
789: arp_debug.debug( 'ccid = ' || l_ccid);
790: END IF;
791:
792: -- create ar_cash_receipt record:
793:

Line 852: arp_debug.debug('p_legal_entity_id is NULL, defaulting from ar_receipt_lib_pvt');

848: THEN
849: l_legal_entity_id := ar_receipt_lib_pvt.get_legal_entity(
850: p_remittance_bank_account_id);
851: IF PG_DEBUG in ('Y', 'C') THEN
852: arp_debug.debug('p_legal_entity_id is NULL, defaulting from ar_receipt_lib_pvt');
853: arp_debug.debug('l_legal_entity_id = ' || l_legal_entity_id);
854: END IF;
855: ELSE
856: l_legal_entity_id := p_legal_entity_id;

Line 853: arp_debug.debug('l_legal_entity_id = ' || l_legal_entity_id);

849: l_legal_entity_id := ar_receipt_lib_pvt.get_legal_entity(
850: p_remittance_bank_account_id);
851: IF PG_DEBUG in ('Y', 'C') THEN
852: arp_debug.debug('p_legal_entity_id is NULL, defaulting from ar_receipt_lib_pvt');
853: arp_debug.debug('l_legal_entity_id = ' || l_legal_entity_id);
854: END IF;
855: ELSE
856: l_legal_entity_id := p_legal_entity_id;
857: IF PG_DEBUG in ('Y', 'C') THEN

Line 858: arp_debug.debug('l_legal_entity_id = ' || l_legal_entity_id);

854: END IF;
855: ELSE
856: l_legal_entity_id := p_legal_entity_id;
857: IF PG_DEBUG in ('Y', 'C') THEN
858: arp_debug.debug('l_legal_entity_id = ' || l_legal_entity_id);
859: END IF;
860: END IF;
861:
862: l_cr_rec.amount := p_amount;

Line 934: arp_debug.debug( 'Anticipated_clearing_date = ' || p_anticipated_clearing_date);

930: l_cr_rec.payment_trxn_extension_id := p_payment_trxn_extension_id ; /* BICHATTE PAYMENT UPTAKE */
931:
932:
933: IF PG_DEBUG in ('Y', 'C') THEN
934: arp_debug.debug( 'Anticipated_clearing_date = ' || p_anticipated_clearing_date);
935: END IF;
936:
937: arp_cash_receipts_pkg.insert_p(l_cr_rec);
938: p_cr_id := l_cr_rec.cash_receipt_id; -- return cash receipt id

Line 1020: arp_debug.debug( 'Create Misc Cash Receipt start () +');

1016: if the receipt amount is zero. Commented out NOCOPY the IF condition.
1017: If (p_amount <> 0) THEN */
1018:
1019: IF PG_DEBUG in ('Y', 'C') THEN
1020: arp_debug.debug( 'Create Misc Cash Receipt start () +');
1021: END IF;
1022:
1023: l_ae_doc_rec.document_type := 'RECEIPT';
1024: l_ae_doc_rec.document_id := l_cr_rec.cash_receipt_id;

Line 1033: arp_debug.debug( 'Create Misc Cash Receipt start () -');

1029:
1030: arp_acct_main.Create_Acct_Entry(l_ae_doc_rec);
1031:
1032: IF PG_DEBUG in ('Y', 'C') THEN
1033: arp_debug.debug( 'Create Misc Cash Receipt start () -');
1034: END IF;
1035: /*END IF; */
1036:
1037: /* Bug fix 4910860 */

Line 1053: arp_debug.debug('arp_process_misc_receipts.insert_misc_receipt()-');

1049: p_batch_id);
1050: END IF;
1051:
1052: IF PG_DEBUG in ('Y', 'C') THEN
1053: arp_debug.debug('arp_process_misc_receipts.insert_misc_receipt()-');
1054: END IF;
1055:
1056: EXCEPTION
1057: WHEN OTHERS THEN

Line 1059: arp_debug.debug('Exception in insert_misc_receipt');

1055:
1056: EXCEPTION
1057: WHEN OTHERS THEN
1058: IF PG_DEBUG in ('Y', 'C') THEN
1059: arp_debug.debug('Exception in insert_misc_receipt');
1060: END IF;
1061: RAISE;
1062:
1063: END insert_misc_receipt;