DBA Data[Home] [Help]

APPS.HRI_BPL_SAL dependencies on HR_CURRENCY_PKG

Line 130: l_rate_type := hr_currency_pkg.get_rate_type

126: EXCEPTION
127: WHEN NO_DATA_FOUND THEN
128: /* If there is no rate type stored in the cache, find the rate type */
129: /* for the given business group */
130: l_rate_type := hr_currency_pkg.get_rate_type
131: (p_business_group_id => p_business_group_id,
132: p_conversion_date => p_conversion_date,
133: p_processing_type => 'I');
134: /* If no rate type is found, use the default */

Line 148: -- l_result := hr_currency_pkg.convert_amount

144: l_rate_type := g_default_rate_type;
145:
146: END IF;
147:
148: -- l_result := hr_currency_pkg.convert_amount
149: l_result := hri_bpl_currency.convert_currency_amount
150: (p_from_currency => p_from_currency,
151: p_to_currency => p_to_currency,
152: p_conversion_date => p_conversion_date,

Line 181: -- l_converted_amount := hr_currency_pkg.convert_amount

177: IF (p_from_currency = 'NA_EDW')
178: THEN
179: l_converted_amount := p_amount ;
180: ELSE
181: -- l_converted_amount := hr_currency_pkg.convert_amount
182: l_converted_amount := hri_bpl_currency.convert_currency_amount
183: (p_from_currency => p_from_currency
184: ,p_to_currency => p_to_currency
185: ,p_conversion_date => p_conversion_date