DBA Data[Home] [Help]

APPS.QA_PERFORMANCE_PUB dependencies on FND_MSG_PUB

Line 43: fnd_msg_pub.initialize;

39: -- For GSCC std File.Sql.35, we have not initialized p_init_msg_list.
40: -- So, check whether the value is NULL.
41:
42: IF fnd_api.to_boolean(NVL(p_init_msg_list, fnd_api.g_false)) THEN
43: fnd_msg_pub.initialize;
44: END IF;
45:
46: -- Initialize API return status to success
47: x_return_status := fnd_api.g_ret_sts_success;

Line 60: fnd_msg_pub.count_and_get(

56: EXCEPTION
57:
58: WHEN fnd_api.g_exc_error THEN
59: x_return_status := fnd_api.g_ret_sts_error;
60: fnd_msg_pub.count_and_get(
61: p_count => x_msg_count,
62: p_data => x_msg_data
63: );
64:

Line 67: fnd_msg_pub.count_and_get(

63: );
64:
65: WHEN fnd_api.g_exc_unexpected_error THEN
66: x_return_status := fnd_api.g_ret_sts_unexp_error;
67: fnd_msg_pub.count_and_get(
68: p_count => x_msg_count,
69: p_data => x_msg_data
70: );
71:

Line 74: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN

70: );
71:
72: WHEN OTHERS THEN
73: x_return_status := fnd_api.g_ret_sts_unexp_error;
74: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
75: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
76: END IF;
77: fnd_msg_pub.count_and_get(
78: p_count => x_msg_count,

Line 75: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);

71:
72: WHEN OTHERS THEN
73: x_return_status := fnd_api.g_ret_sts_unexp_error;
74: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
75: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
76: END IF;
77: fnd_msg_pub.count_and_get(
78: p_count => x_msg_count,
79: p_data => x_msg_data

Line 77: fnd_msg_pub.count_and_get(

73: x_return_status := fnd_api.g_ret_sts_unexp_error;
74: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
75: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
76: END IF;
77: fnd_msg_pub.count_and_get(
78: p_count => x_msg_count,
79: p_data => x_msg_data
80: );
81: