DBA Data[Home] [Help]

APPS.PAY_ETP_BUS_ND dependencies on FND_CURRENCIES

Line 940: -- present in FND_CURRENCIES (currency_code) for the current

936: --
937: -- a) If an input_currency_code is specified, then an output_currency_code
938: -- must also be specified and vice versa
939: -- b) Both input_currency_code and output_currency_code must be
940: -- present in FND_CURRENCIES (currency_code) for the current
941: -- session date.
942: -- c) For element classification 'Payments', the output currency should be
943: -- same as that defined in pay_legislation_rules.
944: --

Line 980: from fnd_currencies

976:
977: Cursor c_chk_currency(p_currency_code varchar2)
978: is
979: select '1'
980: from fnd_currencies
981: where currency_code = p_currency_code
982: and enabled_flag = 'Y'
983: and currency_flag = 'Y'
984: and p_effective_date between nvl(start_date_active,p_effective_date)