DBA Data[Home] [Help]

APPS.HR_UTIL_MISC_SS dependencies on HR_CURRENCY_PKG

Line 22: g_rate_type := hr_currency_pkg.get_rate_type (

18: OPEN c_bg;
19: hr_utility.trace('Going into Fetch after ( OPEN c_bg ): '|| l_proc);
20: FETCH c_bg INTO g_loginPrsnBGId, g_loginPrsnCurrencyCode;
21: CLOSE c_bg;
22: g_rate_type := hr_currency_pkg.get_rate_type (
23: p_business_group_id => g_loginPrsnBGId
24: ,p_conversion_date => p_eff_date
25: ,p_processing_type => 'R');
26:

Line 56: l_return := hr_currency_pkg.convert_amount(

52: l_to_currency := p_from_currency;
53: else
54: l_to_currency := p_override_currency;
55: end if;
56: l_return := hr_currency_pkg.convert_amount(
57: p_from_currency
58: ,l_to_currency
59: ,p_eff_date
60: ,p_amount

Line 62: /* hr_currency_pkg.convert_amount returns negative value in case of invalid currency/date combination.

58: ,l_to_currency
59: ,p_eff_date
60: ,p_amount
61: ,g_rate_type);
62: /* hr_currency_pkg.convert_amount returns negative value in case of invalid currency/date combination.
63: Return the original value in such a case*/
64: if(l_return>=0) then
65: return l_return;
66: else

Line 96: l_return := hr_currency_pkg.convert_amount(

92: l_to_currency := p_from_currency;
93: else
94: l_to_currency := p_override_currency;
95: end if;
96: l_return := hr_currency_pkg.convert_amount(
97: p_from_currency
98: ,l_to_currency
99: ,p_eff_date
100: ,10

Line 102: /* hr_currency_pkg.convert_amount returns negative value in case of invalid currency/date combination.

98: ,l_to_currency
99: ,p_eff_date
100: ,10
101: ,g_rate_type);
102: /* hr_currency_pkg.convert_amount returns negative value in case of invalid currency/date combination.
103: Return the original value in such a case*/
104: if(l_return>=0) then
105: return l_to_currency;
106: else

Line 145: l_converted_amount := hr_currency_pkg.convert_amount(

141: return to_char(p_amount,
142: fnd_currency.get_format_mask(p_from_currency,25))
143: || ' ' || p_from_currency;
144: end if;
145: l_converted_amount := hr_currency_pkg.convert_amount(
146: p_from_currency
147: ,l_to_currency
148: ,p_eff_Date
149: ,p_amount

Line 151: /* hr_currency_pkg.convert_amount returns negative value in case of invalid currency/date combination.

147: ,l_to_currency
148: ,p_eff_Date
149: ,p_amount
150: ,g_rate_type);
151: /* hr_currency_pkg.convert_amount returns negative value in case of invalid currency/date combination.
152: Return the original value in such a case*/
153: if(l_converted_amount>=0) then
154: fnd_message.set_name('PER','HR_MULTI_CURR_FMT');
155: fnd_message.set_token('FROM_AMT',to_char(p_amount,