2380: -- Cursor Definitions
2381: CURSOR get_precision_csr(p_currency_code VARCHAR2)
2382: IS
2383: SELECT NVL(cur.precision,0) precision
2384: FROM fnd_currencies cur
2385: WHERE cur.currency_code = p_currency_code;
2386: -- Local Variables/Constants Declaration
2387: l_cash_inflow_strms_tbl cash_inflows_tbl_type;
2388: l_cash_outflow_strms_tbl cash_inflows_tbl_type;