DBA Data[Home] [Help]

APPS.PAY_SET_BUS dependencies on FND_CURRENCIES

Line 731: from fnd_currencies fc

727: -- Check that the currency code is valid.
728: --
729: cursor csr_valid_currency_code is
730: select null
731: from fnd_currencies fc
732: where upper(fc.currency_code) = upper(p_input_currency_code)
733: and fc.enabled_flag = 'Y'
734: and fc.currency_flag = 'Y';
735: --

Line 777: from fnd_currencies fc

773: -- Check that the currency code is valid.
774: --
775: cursor csr_valid_currency_code is
776: select null
777: from fnd_currencies fc
778: where upper(fc.currency_code) = upper(p_output_currency_code)
779: and fc.enabled_flag = 'Y'
780: and fc.currency_flag = 'Y';
781: --