DBA Data[Home] [Help]

APPS.CSE_ASSET_CREATION_PKG dependencies on FND_CURRENCIES

Line 433: FROM fnd_currencies fc

429: CURSOR round_currency_cur IS
430: SELECT decode(fc.minimum_accountable_unit,
431: NULL, ROUND(p_amount, FC.precision),
432: ROUND(p_amount/FC.minimum_accountable_unit) * FC.minimum_accountable_unit)
433: FROM fnd_currencies fc
434: WHERE fc.currency_code = p_currency_code;
435: BEGIN
436: OPEN round_currency_cur;
437: FETCH round_currency_cur INTO x_rounded_amount ;

Line 870: FROM fnd_currencies fc,

866: SELECT decode(fc.minimum_accountable_unit,
867: NULL, ROUND(l_derived_asset_unit_cost, FC.precision),
868: ROUND(l_derived_asset_unit_cost/FC.minimum_accountable_unit) * FC.minimum_accountable_unit)
869: INTO l_derived_asset_unit_cost
870: FROM fnd_currencies fc,
871: gl_sets_of_books gsob,
872: fa_book_controls fbc
873: WHERE fbc.book_type_code = l_book_type_code
874: AND gsob.set_of_books_id = fbc.set_of_books_id