DBA Data[Home] [Help]

APPS.PO_CURRENCY_SV dependencies on FND_MSG_PUB

Line 345: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error)

341: return is_rate_defined;
342: EXCEPTION
343: WHEN OTHERS THEN
344: po_message_s.sql_error('rate_exists', l_progress, sqlcode);
345: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error)
346: THEN
347: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name,
348: SUBSTRB (SQLERRM , 1 , 200) || ' at location ' || l_progress);
349: END IF;

Line 347: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name,

343: WHEN OTHERS THEN
344: po_message_s.sql_error('rate_exists', l_progress, sqlcode);
345: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error)
346: THEN
347: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name,
348: SUBSTRB (SQLERRM , 1 , 200) || ' at location ' || l_progress);
349: END IF;
350: RAISE;
351: END rate_exists;

Line 444: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error)

440: x_error_message_name := 'PO_INVALID_CURRENCY_CODE';
441: return;
442: WHEN OTHERS THEN
443: x_return_status := fnd_api.g_ret_sts_unexp_error;
444: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error)
445: THEN
446: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name,
447: SUBSTRB (SQLERRM , 1 , 200) || ' at location ' || l_progress);
448: END IF;

Line 446: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name,

442: WHEN OTHERS THEN
443: x_return_status := fnd_api.g_ret_sts_unexp_error;
444: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error)
445: THEN
446: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name,
447: SUBSTRB (SQLERRM , 1 , 200) || ' at location ' || l_progress);
448: END IF;
449: END get_rate;
450: --