DBA Data[Home] [Help]

APPS.FEM_DIS_UTL_PKG dependencies on GL_CURRENCY_API

Line 111: GL_CURRENCY_API.convert_closest_amount(

107: -- This api rounds the TO value to precision and minimum accountable unit of
108: -- the TO currency
109: IF(l_end_date IS NOT NULL) THEN
110:
111: GL_CURRENCY_API.convert_closest_amount(
112: x_from_currency => p_from_cur,
113: x_to_currency => p_to_cur,
114: x_conversion_date => l_end_date,
115: x_conversion_type => c_conversion_type,

Line 147: RAISE gl_currency_api.INVALID_CURRENCY;

143: -- Check if both currencies are identical
144: IF ( p_from_currency = p_to_currency ) THEN
145: RETURN p_from_value;
146: ELSIF( p_from_currency IS NULL OR p_to_currency IS NULL ) THEN
147: RAISE gl_currency_api.INVALID_CURRENCY;
148: END IF;
149:
150: --Get the converted amount
151: get_exchange_rate(

Line 169: WHEN gl_currency_api.INVALID_CURRENCY THEN

165: --x_ret_code := FND_API.G_FALSE;
166: x_to_value := NULL;
167: RETURN x_to_value;
168:
169: WHEN gl_currency_api.INVALID_CURRENCY THEN
170: --x_ret_code := FND_API.G_FALSE;
171: x_to_value := NULL;
172: RETURN x_to_value;
173:

Line 174: WHEN gl_currency_api.NO_RATE THEN

170: --x_ret_code := FND_API.G_FALSE;
171: x_to_value := NULL;
172: RETURN x_to_value;
173:
174: WHEN gl_currency_api.NO_RATE THEN
175: --x_ret_code := FND_API.G_FALSE;
176: x_to_value := NULL;
177: RETURN x_to_value;
178: