DBA Data[Home] [Help]

APPS.ARP_RW_BATCHES_PKG dependencies on FND_PROFILE

Line 4: PG_DEBUG varchar2(1) := NVL(FND_PROFILE.value('AFLOG_ENABLED'), 'N');

1: PACKAGE BODY ARP_RW_BATCHES_PKG AS
2: /* $Header: ARERBATB.pls 120.13 2006/11/09 15:46:28 arnkumar ship $ */
3: --
4: PG_DEBUG varchar2(1) := NVL(FND_PROFILE.value('AFLOG_ENABLED'), 'N');
5:
6: PROCEDURE validate_args_insert_manual(
7: p_row_id IN VARCHAR2,
8: p_batch_id IN ar_batches.batch_id%TYPE,

Line 574: l_batch_rec.exchange_rate_type := fnd_profile.value('AR_DEFAULT_EXCHANGE_RATE_TYPE');

570: if (l_batch_rec.exchange_date is null) then
571: l_batch_rec.exchange_date := l_batch_rec.batch_date;
572: end if;
573: if (l_batch_rec.exchange_rate_type is null) then
574: l_batch_rec.exchange_rate_type := fnd_profile.value('AR_DEFAULT_EXCHANGE_RATE_TYPE');
575: end if;
576: if (l_batch_rec.exchange_rate is null) then
577: l_batch_rec.exchange_rate := arpcurr.getrate(l_batch_rec.currency_code,
578: l_func_curr_code, l_batch_rec.exchange_date, l_batch_rec.exchange_rate_type);

Line 1337: l_default_org_id := fnd_profile.value('DEFAULT_ORG_ID');

1333: l_creation_status:=NULL;
1334: l_override_remit_flag:=NULL;
1335: l_remit_flag:=NULL;
1336: l_org_id := NULL;
1337: l_default_org_id := fnd_profile.value('DEFAULT_ORG_ID');
1338: l_defaulted_flag := 'N';
1339: IF PG_DEBUG IN ('Y', 'C') THEN
1340: arp_debug.debug('arp_rw_batches_pkg.default_batch_source_pay_mthds()+');
1341: arp_debug.debug(' default_org_id: ' || l_default_org_id);