DBA Data[Home] [Help]

APPS.AP_WEB_UTILITIES_PKG dependencies on FND_CURRENCIES

Line 3461: -- Returns Amount in the Rounded format per spec in fnd_currencies

3457:
3458: ------------------------------------------------------------------------
3459: -- FUNCTION Oie_Round_Currency
3460: -- Bug 6136103
3461: -- Returns Amount in the Rounded format per spec in fnd_currencies
3462: -- Introduced as aputilsb.ap_round_currency errors out due to Caching.
3463: ------------------------------------------------------------------------
3464: FUNCTION Oie_Round_Currency
3465: (P_Amount IN number

Line 3476: from fnd_currencies FC

3472: null, decode(FC.precision, null, null, round(P_Amount,FC.precision)),
3473: round(P_Amount/FC.minimum_accountable_unit) *
3474: FC.minimum_accountable_unit)
3475: into l_rounded_amount
3476: from fnd_currencies FC
3477: where FC.currency_code = P_Currency_Code;
3478: --
3479: return(l_rounded_amount);
3480: --