DBA Data[Home] [Help]

APPS.FII_CURRENCY dependencies on GL_CURRENCIES

Line 423: from gl_currencies curr

419: l_warehouse_currency_code := bis_common_parameters.get_currency_code;
420:
421: select nvl( curr.minimum_accountable_unit, power( 10, (-1 * curr.precision)))
422: into l_mau
423: from gl_currencies curr
424: where curr.currency_code = l_warehouse_currency_code;
425:
426: if l_mau is null then
427: l_mau := 0.01; -- assign default value if null;

Line 450: from gl_currencies curr

446: l_warehouse_currency_code := bis_common_parameters.get_secondary_currency_code;
447:
448: select nvl( curr.minimum_accountable_unit, power( 10, (-1 * curr.precision)))
449: into l_mau
450: from gl_currencies curr
451: where curr.currency_code = l_warehouse_currency_code;
452:
453: if l_mau is null then
454: l_mau := 0.01; -- assign default value if null;