DBA Data[Home] [Help]

APPS.PER_RI_CONFIG_UTILITIES dependencies on FND_CURRENCIES

Line 1481: from fnd_currencies

1477: RETURN varchar2 IS
1478:
1479: cursor csr_country_currency(cp_legislation_code in varchar2) IS
1480: select enabled_flag
1481: from fnd_currencies
1482: where issuing_territory_code = cp_legislation_code;
1483:
1484: l_proc varchar2(72) := g_package || 'check_currency_enabled';
1485: l_error_message varchar2(360);

Line 1586: update fnd_currencies set enabled_flag = 'Y' where currency_code = l_currency_code;

1582:
1583: open csr_country_currency(p_legislation_code);
1584: fetch csr_country_currency into l_currency_code;
1585: if csr_country_currency%FOUND then
1586: update fnd_currencies set enabled_flag = 'Y' where currency_code = l_currency_code;
1587: hr_utility.trace('Enabled Currecny = ' || l_currency_code);
1588: else
1589: hr_utility.trace('l_currency_code NOT DEFIINED ');
1590: end if;