DBA Data[Home] [Help]

APPS.EAM_BUSINESSOBJECT_APITYPE dependencies on FND_MSG_PUB

Line 71: fnd_msg_pub.initialize;

67: END IF;
68:
69: -- Initialize message list if p_init_msg_list is set to TRUE.
70: IF fnd_api.to_boolean(p_init_msg_list) THEN
71: fnd_msg_pub.initialize;
72: END IF;
73:
74: -- Initialize API return status to success
75: x_return_status := fnd_api.g_ret_sts_success;

Line 86: fnd_msg_pub.count_and_get(

82: COMMIT WORK;
83: END IF;
84:
85: -- Standard call to get message count and if count is 1, get message info.
86: fnd_msg_pub.count_and_get(
87: p_count => x_msg_count
88: ,p_data => x_msg_data);
89: EXCEPTION
90: WHEN fnd_api.g_exc_error THEN

Line 93: fnd_msg_pub.count_and_get(

89: EXCEPTION
90: WHEN fnd_api.g_exc_error THEN
91: ROLLBACK TO apiname_apitype;
92: x_return_status := fnd_api.g_ret_sts_error;
93: fnd_msg_pub.count_and_get(
94: p_count => x_msg_count
95: ,p_data => x_msg_data);
96: WHEN fnd_api.g_exc_unexpected_error THEN
97: ROLLBACK TO apiname_apitype;

Line 99: fnd_msg_pub.count_and_get(

95: ,p_data => x_msg_data);
96: WHEN fnd_api.g_exc_unexpected_error THEN
97: ROLLBACK TO apiname_apitype;
98: x_return_status := fnd_api.g_ret_sts_unexp_error;
99: fnd_msg_pub.count_and_get(
100: p_count => x_msg_count
101: ,p_data => x_msg_data);
102: WHEN OTHERS THEN
103: ROLLBACK TO apiname_apitype;

Line 106: IF fnd_msg_pub.check_msg_level(

102: WHEN OTHERS THEN
103: ROLLBACK TO apiname_apitype;
104: x_return_status := fnd_api.g_ret_sts_unexp_error;
105:
106: IF fnd_msg_pub.check_msg_level(
107: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
108: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
109: END IF;
110:

Line 107: fnd_msg_pub.g_msg_lvl_unexp_error) THEN

103: ROLLBACK TO apiname_apitype;
104: x_return_status := fnd_api.g_ret_sts_unexp_error;
105:
106: IF fnd_msg_pub.check_msg_level(
107: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
108: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
109: END IF;
110:
111: fnd_msg_pub.count_and_get(

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

104: x_return_status := fnd_api.g_ret_sts_unexp_error;
105:
106: IF fnd_msg_pub.check_msg_level(
107: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
108: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
109: END IF;
110:
111: fnd_msg_pub.count_and_get(
112: p_count => x_msg_count

Line 111: fnd_msg_pub.count_and_get(

107: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
108: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
109: END IF;
110:
111: fnd_msg_pub.count_and_get(
112: p_count => x_msg_count
113: ,p_data => x_msg_data);
114: END apiname;
115: