DBA Data[Home] [Help]

APPS.CSE_ASSET_CREATION_PKG dependencies on FND_CURRENCIES

Line 422: FROM fnd_currencies fc

418: CURSOR round_currency_cur IS
419: SELECT decode(fc.minimum_accountable_unit,
420: NULL, ROUND(p_amount, FC.precision),
421: ROUND(p_amount/FC.minimum_accountable_unit) * FC.minimum_accountable_unit)
422: FROM fnd_currencies fc
423: WHERE fc.currency_code = p_currency_code;
424: BEGIN
425: OPEN round_currency_cur;
426: FETCH round_currency_cur INTO x_rounded_amount ;