DBA Data[Home] [Help]

APPS.AS_PERIOD_RATES_REFRESH dependencies on FND_CURRENCIES

Line 80: | is not defined in fnd_currencies.

76: | HISTORY
77: | 03/20/2001 SOLIN Created
78: | 05/20/2001 SOLIN Changed table name from AS_RATES to AS_PERIOD_RATES
79: | 10/04/2001 SOLIN Add exception handler in case reporting currency
80: | is not defined in fnd_currencies.
81: *-------------------------------------------------------------------------*/
82:
83: PROCEDURE Refresh_AS_PERIOD_RATES(
84: ERRBUF OUT NOCOPY VARCHAR2,

Line 237: FROM fnd_currencies

233: BEGIN
234: SELECT precision,
235: NVL(minimum_accountable_unit, power(10,-1*precision))
236: INTO l_precision, l_mau
237: FROM fnd_currencies
238: WHERE currency_code = l_to_currency;
239:
240: -- AS_DEBUG('precision:' || l_precision || ' mau:' || l_mau);
241: