DBA Data[Home] [Help]

APPS.WMA_INV_WRAPPERS dependencies on FND_MSG_PUB

Line 482: fnd_msg_pub.add;

478: wip_logger.log('unhandled exception ' || SQLERRM, l_dummy);
479: fnd_message.set_name('WIP', 'GENERIC_ERROR');
480: fnd_message.set_token('FUNCTION', 'wmainvwb.transferReservation');
481: fnd_message.set_token('ERROR', SQLERRM);
482: fnd_msg_pub.add;
483: fnd_msg_pub.count_and_get(p_count => x_msg_count,
484: p_data => x_err_msg);
485: end transferReservation;
486:

Line 483: fnd_msg_pub.count_and_get(p_count => x_msg_count,

479: fnd_message.set_name('WIP', 'GENERIC_ERROR');
480: fnd_message.set_token('FUNCTION', 'wmainvwb.transferReservation');
481: fnd_message.set_token('ERROR', SQLERRM);
482: fnd_msg_pub.add;
483: fnd_msg_pub.count_and_get(p_count => x_msg_count,
484: p_data => x_err_msg);
485: end transferReservation;
486:
487: PROCEDURE clearQtyTrees(x_return_status OUT NOCOPY VARCHAR2,

Line 495: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wma_inv_wrappers',

491: inv_quantity_tree_pub.clear_quantity_cache;
492: exception
493: when others then
494: x_return_status := fnd_api.g_ret_sts_unexp_error;
495: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wma_inv_wrappers',
496: p_procedure_name => 'clearQtyTrees',
497: p_error_text => SQLERRM);
498: end clearQtyTrees;
499: END wma_inv_wrappers;