DBA Data[Home] [Help]

APPS.PA_MULTI_CURRENCY dependencies on FND_CURRENCIES

Line 623: -- Changed the following cursor to refer table FND_CURRENCIES

619: RETURN varchar2 IS
620:
621: --
622: -- Bug 4352158
623: -- Changed the following cursor to refer table FND_CURRENCIES
624: -- instead of fnd_currencies_vl.
625: --
626: CURSOR C1 IS
627: SELECT 'X'

Line 624: -- instead of fnd_currencies_vl.

620:
621: --
622: -- Bug 4352158
623: -- Changed the following cursor to refer table FND_CURRENCIES
624: -- instead of fnd_currencies_vl.
625: --
626: CURSOR C1 IS
627: SELECT 'X'
628: FROM dual

Line 631: FROM FND_CURRENCIES

627: SELECT 'X'
628: FROM dual
629: WHERE EXISTS(
630: SELECT 'X'
631: FROM FND_CURRENCIES
632: WHERE currency_code = P_Currency_code
633: AND enabled_flag = 'Y'
634: AND P_EI_date
635: BETWEEN NVL(start_date_active, P_EI_date)