DBA Data[Home] [Help]

APPS.EAM_ATTR_ASSIGN_PVT dependencies on FND_MSG_PUB

Line 82: fnd_msg_pub.initialize;

78: END IF;
79:
80: -- Initialize message list if p_init_msg_list is set to TRUE.
81: IF fnd_api.to_boolean(p_init_msg_list) THEN
82: fnd_msg_pub.initialize;
83: END IF;
84:
85: -- Initialize API return status to success
86: x_return_status := fnd_api.g_ret_sts_success;

Line 135: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);

131: COMMIT WORK;
132: END IF;
133:
134: -- Standard call to get message count and if count is 1, get message info.
135: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
136: EXCEPTION
137: WHEN fnd_api.g_exc_error THEN
138: ROLLBACK TO apiname_apitype;
139: x_return_status := fnd_api.g_ret_sts_error;

Line 140: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);

136: EXCEPTION
137: WHEN fnd_api.g_exc_error THEN
138: ROLLBACK TO apiname_apitype;
139: x_return_status := fnd_api.g_ret_sts_error;
140: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
141: WHEN fnd_api.g_exc_unexpected_error THEN
142: ROLLBACK TO apiname_apitype;
143: x_return_status := fnd_api.g_ret_sts_unexp_error;
144: fnd_msg_pub.count_and_get(

Line 144: fnd_msg_pub.count_and_get(

140: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
141: WHEN fnd_api.g_exc_unexpected_error THEN
142: ROLLBACK TO apiname_apitype;
143: x_return_status := fnd_api.g_ret_sts_unexp_error;
144: fnd_msg_pub.count_and_get(
145: p_count => x_msg_count
146: ,p_data => x_msg_data);
147: WHEN OTHERS THEN
148: ROLLBACK TO apiname_apitype;

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

147: WHEN OTHERS THEN
148: ROLLBACK TO apiname_apitype;
149: x_return_status := fnd_api.g_ret_sts_unexp_error;
150:
151: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
152: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
153: END IF;
154:
155: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);

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

148: ROLLBACK TO apiname_apitype;
149: x_return_status := fnd_api.g_ret_sts_unexp_error;
150:
151: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
152: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
153: END IF;
154:
155: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
156:

Line 155: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);

151: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
152: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
153: END IF;
154:
155: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
156:
157: END Insert_Row;
158:
159: PROCEDURE LOCK_ROW(

Line 199: fnd_msg_pub.initialize;

195: END IF;
196:
197: -- Initialize message list if p_init_msg_list is set to TRUE.
198: IF fnd_api.to_boolean(p_init_msg_list) THEN
199: fnd_msg_pub.initialize;
200: END IF;
201:
202: -- Initialize API return status to success
203: x_return_status := fnd_api.g_ret_sts_success;

Line 236: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);

232: COMMIT WORK;
233: END IF;
234:
235: -- Standard call to get message count and if count is 1, get message info.
236: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
237: EXCEPTION
238: WHEN fnd_api.g_exc_error THEN
239: ROLLBACK TO apiname_apitype;
240: x_return_status := fnd_api.g_ret_sts_error;

Line 241: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);

237: EXCEPTION
238: WHEN fnd_api.g_exc_error THEN
239: ROLLBACK TO apiname_apitype;
240: x_return_status := fnd_api.g_ret_sts_error;
241: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
242: WHEN fnd_api.g_exc_unexpected_error THEN
243: ROLLBACK TO apiname_apitype;
244: x_return_status := fnd_api.g_ret_sts_unexp_error;
245: fnd_msg_pub.count_and_get(

Line 245: fnd_msg_pub.count_and_get(

241: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
242: WHEN fnd_api.g_exc_unexpected_error THEN
243: ROLLBACK TO apiname_apitype;
244: x_return_status := fnd_api.g_ret_sts_unexp_error;
245: fnd_msg_pub.count_and_get(
246: p_count => x_msg_count
247: ,p_data => x_msg_data);
248: WHEN OTHERS THEN
249: ROLLBACK TO apiname_apitype;

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

248: WHEN OTHERS THEN
249: ROLLBACK TO apiname_apitype;
250: x_return_status := fnd_api.g_ret_sts_unexp_error;
251:
252: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
253: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
254: END IF;
255:
256: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);

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

249: ROLLBACK TO apiname_apitype;
250: x_return_status := fnd_api.g_ret_sts_unexp_error;
251:
252: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
253: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
254: END IF;
255:
256: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
257:

Line 256: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);

252: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
253: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
254: END IF;
255:
256: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
257:
258: END Lock_Row;
259:
260: PROCEDURE UPDATE_ROW(

Line 288: fnd_msg_pub.initialize;

284: END IF;
285:
286: -- Initialize message list if p_init_msg_list is set to TRUE.
287: IF fnd_api.to_boolean(p_init_msg_list) THEN
288: fnd_msg_pub.initialize;
289: END IF;
290:
291: -- Initialize API return status to success
292: x_return_status := fnd_api.g_ret_sts_success;

Line 315: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);

311: COMMIT WORK;
312: END IF;
313:
314: -- Standard call to get message count and if count is 1, get message info.
315: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
316: EXCEPTION
317: WHEN fnd_api.g_exc_error THEN
318: ROLLBACK TO apiname_apitype;
319: x_return_status := fnd_api.g_ret_sts_error;

Line 320: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);

316: EXCEPTION
317: WHEN fnd_api.g_exc_error THEN
318: ROLLBACK TO apiname_apitype;
319: x_return_status := fnd_api.g_ret_sts_error;
320: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
321: WHEN fnd_api.g_exc_unexpected_error THEN
322: ROLLBACK TO apiname_apitype;
323: x_return_status := fnd_api.g_ret_sts_unexp_error;
324: fnd_msg_pub.count_and_get(

Line 324: fnd_msg_pub.count_and_get(

320: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
321: WHEN fnd_api.g_exc_unexpected_error THEN
322: ROLLBACK TO apiname_apitype;
323: x_return_status := fnd_api.g_ret_sts_unexp_error;
324: fnd_msg_pub.count_and_get(
325: p_count => x_msg_count
326: ,p_data => x_msg_data);
327: WHEN OTHERS THEN
328: ROLLBACK TO apiname_apitype;

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

327: WHEN OTHERS THEN
328: ROLLBACK TO apiname_apitype;
329: x_return_status := fnd_api.g_ret_sts_unexp_error;
330:
331: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
332: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
333: END IF;
334:
335: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);

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

328: ROLLBACK TO apiname_apitype;
329: x_return_status := fnd_api.g_ret_sts_unexp_error;
330:
331: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
332: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
333: END IF;
334:
335: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
336:

Line 335: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);

331: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
332: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
333: END IF;
334:
335: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
336:
337: END Update_Row;
338:
339: END EAM_ATTR_ASSIGN_PVT;