DBA Data[Home] [Help]

APPS.GCS_TRANSLATION_PKG dependencies on FND_CURRENCIES

Line 355: FROM fnd_currencies

351:
352: -- Used to get the minimum accountable unit for the currency given.
353: CURSOR ccy_mau_c(c_ccy VARCHAR2) IS
354: SELECT nvl(minimum_accountable_unit, power(10, -precision))
355: FROM fnd_currencies
356: WHERE currency_code = c_ccy;
357:
358: -- Get the source system code for GCS
359: CURSOR source_system_code_c IS

Line 648: 'FROM fnd_currencies' || g_nl ||

644: CLOSE re_template_c;
645:
646: write_to_log(module, FND_LOG.LEVEL_STATEMENT,
647: 'SELECT nvl(minimum_accountable_unit, power(10, -precision))' || g_nl ||
648: 'FROM fnd_currencies' || g_nl ||
649: 'WHERE currency_code = ''' || x_target_currency || '''');
650:
651: -- Get the minimum accountable unit of the target currency.
652: OPEN ccy_mau_c(x_target_currency);