DBA Data[Home] [Help]

APPS.PAY_ETP_BUS dependencies on FND_CURRENCIES

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

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

Line 979: from fnd_currencies

975: Cursor c_chk_currency(p_currency_code varchar2)
976: is
977: -- bug 7462502 in startup mode remove restriction on enabled currencies
978: select '1'
979: from fnd_currencies
980: where currency_code = p_currency_code
981: and ( ( enabled_flag = 'Y') or
982: ( hr_startup_data_api_support.g_startup_mode IN ('STARTUP') ))
983: and currency_flag = 'Y'