DBA Data[Home] [Help]

APPS.OKS_EXTWAR_UTIL_PVT dependencies on FND_CURRENCIES

Line 461: FROM fnd_currencies

457: IS
458: CURSOR fnd_cur
459: IS
460: SELECT minimum_accountable_unit, PRECISION, extended_precision
461: FROM fnd_currencies
462: WHERE currency_code = p_currency_code;
463:
464: l_mau fnd_currencies.minimum_accountable_unit%TYPE;
465: l_sp fnd_currencies.PRECISION%TYPE;

Line 464: l_mau fnd_currencies.minimum_accountable_unit%TYPE;

460: SELECT minimum_accountable_unit, PRECISION, extended_precision
461: FROM fnd_currencies
462: WHERE currency_code = p_currency_code;
463:
464: l_mau fnd_currencies.minimum_accountable_unit%TYPE;
465: l_sp fnd_currencies.PRECISION%TYPE;
466: l_ep fnd_currencies.extended_precision%TYPE;
467: BEGIN
468: OPEN fnd_cur;

Line 465: l_sp fnd_currencies.PRECISION%TYPE;

461: FROM fnd_currencies
462: WHERE currency_code = p_currency_code;
463:
464: l_mau fnd_currencies.minimum_accountable_unit%TYPE;
465: l_sp fnd_currencies.PRECISION%TYPE;
466: l_ep fnd_currencies.extended_precision%TYPE;
467: BEGIN
468: OPEN fnd_cur;
469:

Line 466: l_ep fnd_currencies.extended_precision%TYPE;

462: WHERE currency_code = p_currency_code;
463:
464: l_mau fnd_currencies.minimum_accountable_unit%TYPE;
465: l_sp fnd_currencies.PRECISION%TYPE;
466: l_ep fnd_currencies.extended_precision%TYPE;
467: BEGIN
468: OPEN fnd_cur;
469:
470: FETCH fnd_cur