DBA Data[Home] [Help]

APPS.OZF_FUND_ADJUSTMENT_PVT dependencies on GL_CURRENCY_API

Line 1513: gl_currency_api.convert_closest_amount (

1509: ELSE
1510: l_conversion_type := p_conv_type;
1511: END IF;
1512: -- Call the proper GL API to convert the amount.
1513: gl_currency_api.convert_closest_amount (
1514: x_from_currency=> p_from_currency
1515: ,x_to_currency=> p_to_currency
1516: ,x_conversion_date=> SYSDATE
1517: ,x_conversion_type=> l_conversion_type

Line 1528: WHEN gl_currency_api.no_rate THEN

1524: ,x_rate=> l_rate
1525: );
1526: RETURN l_returned_amount;
1527: EXCEPTION
1528: WHEN gl_currency_api.no_rate THEN
1529: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error) THEN
1530: fnd_message.set_name ('OZF', 'OZF_NO_RATE');
1531: fnd_message.set_token ('CURRENCY_FROM', p_from_currency);
1532: fnd_message.set_token ('CURRENCY_TO', p_to_currency);

Line 1536: WHEN gl_currency_api.invalid_currency THEN

1532: fnd_message.set_token ('CURRENCY_TO', p_to_currency);
1533: fnd_msg_pub.ADD;
1534: RETURN 0;
1535: END IF;
1536: WHEN gl_currency_api.invalid_currency THEN
1537: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error) THEN
1538: fnd_message.set_name ('OZF', 'OZF_INVALID_CURR');
1539: fnd_message.set_token ('CURRENCY_FROM', p_from_currency);
1540: fnd_message.set_token ('CURRENCY_TO', p_to_currency);

Line 1694: gl_currency_api.get_closest_triangulation_rate (

1690:
1691: IS
1692:
1693: BEGIN
1694: gl_currency_api.get_closest_triangulation_rate (
1695: x_from_currency => p_from_currency,
1696: x_to_currency => p_to_currency,
1697: x_conversion_date => p_conversion_date,
1698: x_conversion_type => p_conversion_type,