DBA Data[Home] [Help]

APPS.WIP_EAM_WORKREQUEST_PUB dependencies on FND_MSG_PUB

Line 72: fnd_msg_pub.initialize;

68: l_stmt_num := 20;
69:
70: -- Initialize message list if p_init_msg_list is set to TRUE.
71: IF fnd_api.to_boolean(p_init_msg_list) THEN
72: fnd_msg_pub.initialize;
73: END IF;
74:
75: l_stmt_num := 30;
76:

Line 290: fnd_msg_pub.count_and_get(

286: EXCEPTION
287: WHEN fnd_api.g_exc_error THEN
288: ROLLBACK TO work_request_import_pvt;
289: x_return_status := fnd_api.g_ret_sts_error;
290: fnd_msg_pub.count_and_get(
291: p_encoded => fnd_api.g_false
292: ,p_count => x_msg_count
293: ,p_data => x_msg_data);
294: WHEN fnd_api.g_exc_unexpected_error THEN

Line 297: fnd_msg_pub.count_and_get(

293: ,p_data => x_msg_data);
294: WHEN fnd_api.g_exc_unexpected_error THEN
295: ROLLBACK TO work_request_import_pvt;
296: x_return_status := fnd_api.g_ret_sts_unexp_error;
297: fnd_msg_pub.count_and_get(
298: p_encoded => fnd_api.g_false
299: ,p_count => x_msg_count
300: ,p_data => x_msg_data);
301: WHEN OTHERS THEN

Line 304: IF fnd_msg_pub.check_msg_level(

300: ,p_data => x_msg_data);
301: WHEN OTHERS THEN
302: ROLLBACK TO work_request_import_pvt;
303: x_return_status := fnd_api.g_ret_sts_unexp_error;
304: IF fnd_msg_pub.check_msg_level(
305: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
306: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name||'('||l_stmt_num||')');
307: END IF;
308: fnd_msg_pub.count_and_get(

Line 305: fnd_msg_pub.g_msg_lvl_unexp_error) THEN

301: WHEN OTHERS THEN
302: ROLLBACK TO work_request_import_pvt;
303: x_return_status := fnd_api.g_ret_sts_unexp_error;
304: IF fnd_msg_pub.check_msg_level(
305: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
306: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name||'('||l_stmt_num||')');
307: END IF;
308: fnd_msg_pub.count_and_get(
309: p_encoded => fnd_api.g_false

Line 306: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name||'('||l_stmt_num||')');

302: ROLLBACK TO work_request_import_pvt;
303: x_return_status := fnd_api.g_ret_sts_unexp_error;
304: IF fnd_msg_pub.check_msg_level(
305: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
306: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name||'('||l_stmt_num||')');
307: END IF;
308: fnd_msg_pub.count_and_get(
309: p_encoded => fnd_api.g_false
310: ,p_count => x_msg_count

Line 308: fnd_msg_pub.count_and_get(

304: IF fnd_msg_pub.check_msg_level(
305: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
306: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name||'('||l_stmt_num||')');
307: END IF;
308: fnd_msg_pub.count_and_get(
309: p_encoded => fnd_api.g_false
310: ,p_count => x_msg_count
311: ,p_data => x_msg_data);
312: