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.12010000.2 2009/08/25 05:58:20 nproddut ship $ */
3: --
4: PG_DEBUG varchar2(1) := NVL(FND_PROFILE.value('AFLOG_ENABLED'), 'N');
5:
6:
7: PROCEDURE validate_args_insert_manual(
8: p_row_id IN VARCHAR2,

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

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

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

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