DBA Data[Home] [Help]

APPS.PO_SHARED_PROC_PVT dependencies on FND_MESSAGE

Line 957: fnd_message.parse_encoded(FND_MSG_PUB.get,x_app_name,x_error_msg_name);

953:
954: EXCEPTION
955: WHEN fnd_api.g_exc_error THEN
956: x_return_status := fnd_api.g_ret_sts_error;
957: fnd_message.parse_encoded(FND_MSG_PUB.get,x_app_name,x_error_msg_name);
958: WHEN fnd_api.g_exc_unexpected_error THEN
959: x_return_status := fnd_api.g_ret_sts_unexp_error;
960: fnd_message.parse_encoded(FND_MSG_PUB.get,x_app_name,x_error_msg_name);
961: WHEN OTHERS THEN

Line 960: fnd_message.parse_encoded(FND_MSG_PUB.get,x_app_name,x_error_msg_name);

956: x_return_status := fnd_api.g_ret_sts_error;
957: fnd_message.parse_encoded(FND_MSG_PUB.get,x_app_name,x_error_msg_name);
958: WHEN fnd_api.g_exc_unexpected_error THEN
959: x_return_status := fnd_api.g_ret_sts_unexp_error;
960: fnd_message.parse_encoded(FND_MSG_PUB.get,x_app_name,x_error_msg_name);
961: WHEN OTHERS THEN
962: x_return_status := fnd_api.g_ret_sts_unexp_error;
963: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name,
964: SUBSTRB(SQLERRM , 1 , 200) || ' at location ' || l_progress);

Line 965: fnd_message.parse_encoded(FND_MSG_PUB.get,x_app_name,x_error_msg_name);

961: WHEN OTHERS THEN
962: x_return_status := fnd_api.g_ret_sts_unexp_error;
963: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name,
964: SUBSTRB(SQLERRM , 1 , 200) || ' at location ' || l_progress);
965: fnd_message.parse_encoded(FND_MSG_PUB.get,x_app_name,x_error_msg_name);
966: END validate_cross_ou_purchasing;
967:
968:
969: -----------------------------------------------------------------------