DBA Data[Home] [Help]

APPS.OZF_FUND_ADJUSTMENT_PVT dependencies on GL_CURRENCY_API

Line 1296: gl_currency_api.convert_closest_amount (

1292: ELSE
1293: l_conversion_type := p_conv_type;
1294: END IF;
1295: -- Call the proper GL API to convert the amount.
1296: gl_currency_api.convert_closest_amount (
1297: x_from_currency=> p_from_currency
1298: ,x_to_currency=> p_to_currency
1299: ,x_conversion_date=> SYSDATE
1300: ,x_conversion_type=> l_conversion_type

Line 1311: WHEN gl_currency_api.no_rate THEN

1307: ,x_rate=> l_rate
1308: );
1309: RETURN l_returned_amount;
1310: EXCEPTION
1311: WHEN gl_currency_api.no_rate THEN
1312: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error) THEN
1313: fnd_message.set_name ('OZF', 'OZF_NO_RATE');
1314: fnd_message.set_token ('CURRENCY_FROM', p_from_currency);
1315: fnd_message.set_token ('CURRENCY_TO', p_to_currency);

Line 1319: WHEN gl_currency_api.invalid_currency THEN

1315: fnd_message.set_token ('CURRENCY_TO', p_to_currency);
1316: fnd_msg_pub.ADD;
1317: RETURN 0;
1318: END IF;
1319: WHEN gl_currency_api.invalid_currency THEN
1320: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error) THEN
1321: fnd_message.set_name ('OZF', 'OZF_INVALID_CURR');
1322: fnd_message.set_token ('CURRENCY_FROM', p_from_currency);
1323: fnd_message.set_token ('CURRENCY_TO', p_to_currency);

Line 1476: gl_currency_api.get_closest_triangulation_rate (

1472:
1473: IS
1474:
1475: BEGIN
1476: gl_currency_api.get_closest_triangulation_rate (
1477: x_from_currency => p_from_currency,
1478: x_to_currency => p_to_currency,
1479: x_conversion_date => p_conversion_date,
1480: x_conversion_type => p_conversion_type,