DBA Data[Home] [Help]

APPS.PQH_WKS_BUDGET dependencies on FND_CURRENCIES

Line 7: from fnd_currencies

3: g_package varchar2(100) := 'PQH_WKS_BUDGET.' ;
4:
5: function get_currency_precision(p_currency_code in varchar2) return number is
6: cursor c1 is select precision
7: from fnd_currencies
8: where currency_code = p_currency_code;
9: l_precision number;
10: begin
11: open c1;