DBA Data[Home] [Help]

APPS.HR_CURRENCY_PKG dependencies on HR_UTILITY

Line 323: hr_utility.trace(' cache '||rate);

319: and ( p_from_currency = g_from_currency )
320: and ( p_conversion_type = g_conversion_type ) then
321: --
322: rate := g_conversion_rate;
323: hr_utility.trace(' cache '||rate);
324: return(rate);
325: --
326: else
327: -- Get conversion rate between the two currencies from GL_DAILY_RATES

Line 335: hr_utility.trace('not cache '||rate);

331: WHERE from_currency = p_from_currency
332: AND to_currency = p_to_currency
333: AND conversion_date = trunc(p_conversion_date)
334: AND conversion_type = p_conversion_type;
335: hr_utility.trace('not cache '||rate);
336: --
337: -- set global cache values
338: --
339: g_from_currency := p_from_currency;

Line 652: -- hr_utility.set_location('Not null', 10);

648: END IF;
649:
650: -- Check if we are rounding to a certain no. of DP
651: IF p_round IS NOT NULL THEN
652: -- hr_utility.set_location('Not null', 10);
653: rounding := POWER(10, (-1 * p_round));
654: ELSE
655: -- hr_utility.set_location('Null', 20);
656: -- Use std no. of decimal places

Line 655: -- hr_utility.set_location('Null', 20);

651: IF p_round IS NOT NULL THEN
652: -- hr_utility.set_location('Not null', 10);
653: rounding := POWER(10, (-1 * p_round));
654: ELSE
655: -- hr_utility.set_location('Null', 20);
656: -- Use std no. of decimal places
657: rounding := to_mau;
658: END IF;
659: