DBA Data[Home] [Help]

APPS.OKL_INTERNAL_TO_EXTERNAL dependencies on FND_CURRENCIES

Line 782: FROM fnd_currencies c

778: -- Get currency attributes
779: CURSOR l_curr_csr(cp_currency_code VARCHAR2) IS
780: SELECT c.minimum_accountable_unit,
781: c.PRECISION
782: FROM fnd_currencies c
783: WHERE c.currency_code = cp_currency_code;
784:
785: l_min_acct_unit fnd_currencies.minimum_accountable_unit%TYPE;
786: l_precision fnd_currencies.PRECISION %TYPE;

Line 785: l_min_acct_unit fnd_currencies.minimum_accountable_unit%TYPE;

781: c.PRECISION
782: FROM fnd_currencies c
783: WHERE c.currency_code = cp_currency_code;
784:
785: l_min_acct_unit fnd_currencies.minimum_accountable_unit%TYPE;
786: l_precision fnd_currencies.PRECISION %TYPE;
787:
788: l_rounded_amount okl_txl_ar_inv_lns_v.amount%TYPE;
789:

Line 786: l_precision fnd_currencies.PRECISION %TYPE;

782: FROM fnd_currencies c
783: WHERE c.currency_code = cp_currency_code;
784:
785: l_min_acct_unit fnd_currencies.minimum_accountable_unit%TYPE;
786: l_precision fnd_currencies.PRECISION %TYPE;
787:
788: l_rounded_amount okl_txl_ar_inv_lns_v.amount%TYPE;
789:
790: --Start code added by pgomes on 20-NOV-2002