DBA Data[Home] [Help]

APPS.HR_JP_ID_PKG dependencies on FND_CURRENCIES

Line 373: l_currency_code FND_CURRENCIES.CURRENCY_CODE%TYPE;

369: p_legislation_code IN VARCHAR2,
370: p_error_when_not_exist IN VARCHAR2 DEFAULT 'TRUE') RETURN VARCHAR2
371: --------------------------------------------------------------------------------
372: IS
373: l_currency_code FND_CURRENCIES.CURRENCY_CODE%TYPE;
374: CURSOR csr_currency_code IS
375: select currency_code
376: from fnd_currencies
377: where issuing_territory_code = p_legislation_code;

Line 376: from fnd_currencies

372: IS
373: l_currency_code FND_CURRENCIES.CURRENCY_CODE%TYPE;
374: CURSOR csr_currency_code IS
375: select currency_code
376: from fnd_currencies
377: where issuing_territory_code = p_legislation_code;
378: BEGIN
379: open csr_currency_code;
380: fetch csr_currency_code into l_currency_code;