DBA Data[Home] [Help]

APPS.INV_MO_BACKORDER_PVT dependencies on FND_MSG_PUB

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

140: END IF;
141: EXCEPTION
142: WHEN fnd_api.g_exc_error THEN
143: x_return_status := fnd_api.g_ret_sts_error;
144: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
145: WHEN fnd_api.g_exc_unexpected_error THEN
146: x_return_status := fnd_api.g_ret_sts_unexp_error;
147: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
148: WHEN OTHERS THEN

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

143: x_return_status := fnd_api.g_ret_sts_error;
144: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
145: WHEN fnd_api.g_exc_unexpected_error THEN
146: x_return_status := fnd_api.g_ret_sts_unexp_error;
147: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
148: WHEN OTHERS THEN
149: x_return_status := fnd_api.g_ret_sts_unexp_error;
150: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
151: fnd_msg_pub.add_exc_msg(g_pkg_name, 'BACKORDER_SOURCE');

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

146: x_return_status := fnd_api.g_ret_sts_unexp_error;
147: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
148: WHEN OTHERS THEN
149: x_return_status := fnd_api.g_ret_sts_unexp_error;
150: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
151: fnd_msg_pub.add_exc_msg(g_pkg_name, 'BACKORDER_SOURCE');
152: END IF;
153: END backorder_source;
154:

Line 151: fnd_msg_pub.add_exc_msg(g_pkg_name, 'BACKORDER_SOURCE');

147: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
148: WHEN OTHERS THEN
149: x_return_status := fnd_api.g_ret_sts_unexp_error;
150: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
151: fnd_msg_pub.add_exc_msg(g_pkg_name, 'BACKORDER_SOURCE');
152: END IF;
153: END backorder_source;
154:
155: PROCEDURE backorder(

Line 324: fnd_msg_pub.ADD;

320:
321: IF l_allow_backordering = 'N' THEN
322: fnd_message.set_name('WMS', 'WMS_ACTIVE_LOADED_TASKS_EXIST');
323: fnd_message.set_token('LINE_ID', p_line_id);
324: fnd_msg_pub.ADD;
325: RAISE fnd_api.g_exc_error;
326: END IF;
327:
328: COMMIT;

Line 332: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data, p_encoded=> 'F');

328: COMMIT;
329: EXCEPTION
330: WHEN fnd_api.g_exc_error THEN
331: x_return_status := fnd_api.g_ret_sts_error;
332: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data, p_encoded=> 'F');
333:
334: IF l_allow_backordering = 'Y' THEN
335: ROLLBACK TO inv_start_proc;
336: END IF;

Line 339: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data, p_encoded=> 'F');

335: ROLLBACK TO inv_start_proc;
336: END IF;
337: WHEN fnd_api.g_exc_unexpected_error THEN
338: x_return_status := fnd_api.g_ret_sts_unexp_error;
339: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data, p_encoded=> 'F');
340: ROLLBACK TO inv_start_proc;
341: WHEN OTHERS THEN
342: x_return_status := fnd_api.g_ret_sts_unexp_error;
343:

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

340: ROLLBACK TO inv_start_proc;
341: WHEN OTHERS THEN
342: x_return_status := fnd_api.g_ret_sts_unexp_error;
343:
344: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
345: fnd_msg_pub.add_exc_msg(g_pkg_name, 'BACKORDER');
346: END IF;
347:
348: ROLLBACK TO inv_start_proc;

Line 345: fnd_msg_pub.add_exc_msg(g_pkg_name, 'BACKORDER');

341: WHEN OTHERS THEN
342: x_return_status := fnd_api.g_ret_sts_unexp_error;
343:
344: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
345: fnd_msg_pub.add_exc_msg(g_pkg_name, 'BACKORDER');
346: END IF;
347:
348: ROLLBACK TO inv_start_proc;
349: END backorder;

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

682: END IF;
683: EXCEPTION
684: WHEN fnd_api.g_exc_error THEN
685: x_return_status := fnd_api.g_ret_sts_error;
686: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
687: WHEN fnd_api.g_exc_unexpected_error THEN
688: x_return_status := fnd_api.g_ret_sts_unexp_error;
689: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
690: WHEN OTHERS THEN

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

685: x_return_status := fnd_api.g_ret_sts_error;
686: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
687: WHEN fnd_api.g_exc_unexpected_error THEN
688: x_return_status := fnd_api.g_ret_sts_unexp_error;
689: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
690: WHEN OTHERS THEN
691: x_return_status := fnd_api.g_ret_sts_unexp_error;
692:
693: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN

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

689: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
690: WHEN OTHERS THEN
691: x_return_status := fnd_api.g_ret_sts_unexp_error;
692:
693: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
694: fnd_msg_pub.add_exc_msg(g_pkg_name, 'DELETE_DETAILS');
695: END IF;
696: END delete_details;
697:

Line 694: fnd_msg_pub.add_exc_msg(g_pkg_name, 'DELETE_DETAILS');

690: WHEN OTHERS THEN
691: x_return_status := fnd_api.g_ret_sts_unexp_error;
692:
693: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
694: fnd_msg_pub.add_exc_msg(g_pkg_name, 'DELETE_DETAILS');
695: END IF;
696: END delete_details;
697:
698: END inv_mo_backorder_pvt;