DBA Data[Home] [Help]

APPS.CSI_ITEM_INSTANCE_VLD_PVT dependencies on FND_CURRENCIES

Line 2393: /* by looking through the fnd_currencies */

2389: END Valid_operational_status;
2390:
2391: /*---------------------------------------------------------*/
2392: /* This function checks for the currency code */
2393: /* by looking through the fnd_currencies */
2394: /*---------------------------------------------------------*/
2395:
2396: FUNCTION Valid_currency_code
2397: (

Line 2413: FROM fnd_currencies

2409: ELSE
2410: BEGIN
2411: SELECT '1'
2412: INTO l_dummy
2413: FROM fnd_currencies
2414: WHERE currency_code = UPPER(p_currency_code);
2415: l_return_value := TRUE;
2416:
2417: EXCEPTION