DBA Data[Home] [Help]

APPS.INV_DEFAULT_TROLIN dependencies on FND_MSG_PUB

Line 638: fnd_msg_pub.ADD;

634:
635: IF l_tmp_secondary_quantity = -99999 THEN
636: -- conversion failed
637: fnd_message.set_name('INV', 'CAN-NOT-CONVERT-TO-SECOND-UOM'); -- INVCONV NEW MESSAGE
638: fnd_msg_pub.ADD;
639: l_return_status := fnd_api.g_ret_sts_error;
640: RAISE fnd_api.g_exc_error;
641: END IF;
642: p_trolin_rec.secondary_quantity := l_tmp_secondary_quantity; -- INVCONV

Line 659: /* IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN

655: WHEN OTHERS THEN
656: x_return_status := fnd_api.g_ret_sts_unexp_error;
657:
658: --
659: /* IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
660: fnd_msg_pub.add_exc_msg(g_pkg_name, 'Convert_Quantity');
661: END IF; */
662: END convert_quantity;
663:

Line 660: fnd_msg_pub.add_exc_msg(g_pkg_name, 'Convert_Quantity');

656: x_return_status := fnd_api.g_ret_sts_unexp_error;
657:
658: --
659: /* IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
660: fnd_msg_pub.add_exc_msg(g_pkg_name, 'Convert_Quantity');
661: END IF; */
662: END convert_quantity;
663:
664:

Line 695: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_ERROR)

691: -- Check number of iterations.
692:
693: IF p_iteration > INV_GLOBALS.G_MAX_DEF_ITERATIONS THEN
694:
695: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_ERROR)
696: THEN
697:
698: FND_MESSAGE.SET_NAME('INV','OE_DEF_MAX_ITERATION');
699: FND_MSG_PUB.Add;

Line 699: FND_MSG_PUB.Add;

695: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_ERROR)
696: THEN
697:
698: FND_MESSAGE.SET_NAME('INV','OE_DEF_MAX_ITERATION');
699: FND_MSG_PUB.Add;
700:
701: END IF;
702:
703: RAISE FND_API.G_EXC_ERROR;