8:
9: /*=======================================================================+
10: | Package Global Constants
11: +=======================================================================*/
12: PG_DEBUG varchar2(1) := NVL(FND_PROFILE.value('AFLOG_ENABLED'), 'N');
13: g_ccr_receivables_trx_id NUMBER(15);
14: g_batch_source_id ra_batch_sources.batch_source_id%type;
15: g_receipt_handling_option ra_batch_sources.receipt_handling_option%type;
16: g_nccr_receivables_trx_id NUMBER(15);
2024: IF PG_DEBUG in ('Y', 'C') THEN
2025: arp_standard.debug('arp_process_returns.fetch_gl_date()+ ');
2026: END IF;
2027:
2028: l_profile_appln_gl_date_def := NVL(fnd_profile.value('AR_APPLICATION_GL_DATE_DEFAULT')
2029: , 'INV_REC_DT');
2030:
2031: IF PG_DEBUG in ('Y', 'C') THEN
2032: arp_standard.debug('Profile Value : '||l_profile_appln_gl_date_def);