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 323: fnd_msg_pub.ADD;

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

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

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

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

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

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

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

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

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

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

654: END IF;
655: EXCEPTION
656: WHEN fnd_api.g_exc_error THEN
657: x_return_status := fnd_api.g_ret_sts_error;
658: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
659: WHEN fnd_api.g_exc_unexpected_error THEN
660: x_return_status := fnd_api.g_ret_sts_unexp_error;
661: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
662: WHEN OTHERS THEN

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

657: x_return_status := fnd_api.g_ret_sts_error;
658: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
659: WHEN fnd_api.g_exc_unexpected_error THEN
660: x_return_status := fnd_api.g_ret_sts_unexp_error;
661: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
662: WHEN OTHERS THEN
663: x_return_status := fnd_api.g_ret_sts_unexp_error;
664:
665: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN

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

661: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
662: WHEN OTHERS THEN
663: x_return_status := fnd_api.g_ret_sts_unexp_error;
664:
665: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
666: fnd_msg_pub.add_exc_msg(g_pkg_name, 'DELETE_DETAILS');
667: END IF;
668: END delete_details;
669:

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

662: WHEN OTHERS THEN
663: x_return_status := fnd_api.g_ret_sts_unexp_error;
664:
665: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
666: fnd_msg_pub.add_exc_msg(g_pkg_name, 'DELETE_DETAILS');
667: END IF;
668: END delete_details;
669:
670: END inv_mo_backorder_pvt;