DBA Data[Home] [Help]

APPS.MTL_INV_VALIDATE_GRP dependencies on INV_CONVERT

Line 3555: l_converted_qty := INV_CONVERT.inv_um_convert(

3551: x_return_status := fnd_api.g_ret_sts_success;
3552: x_errorcode := 0;
3553: --
3554: IF p_secondary_quantity IS NULL OR p_secondary_quantity = 0 THEN
3555: l_converted_qty := INV_CONVERT.inv_um_convert(
3556: organization_id => p_organization_id
3557: , item_id => p_inventory_item_id
3558: , lot_number => p_lot_number
3559: , precision => p_precision

Line 3584: IF ( INV_CONVERT.within_deviation(

3580: FND_MSG_PUB.Add;
3581: RAISE FND_API.G_EXC_ERROR;
3582: END IF;
3583:
3584: IF ( INV_CONVERT.within_deviation(
3585: p_organization_id => p_organization_id
3586: , p_inventory_item_id => p_inventory_item_id
3587: , p_lot_number => p_lot_number
3588: , p_precision => p_precision

Line 3598: -- An error occurred in call to INV_CONVERT.within_deviation

3594: , p_unit_of_measure2 => NULL) = 0) THEN
3595:
3596: x_errorcode := 51;
3597: FND_MESSAGE.SET_NAME('INV','INV_DEVIATION_CHECK_ERR');
3598: -- An error occurred in call to INV_CONVERT.within_deviation
3599: fnd_msg_pub.ADD;
3600: RAISE fnd_api.g_exc_error;
3601: END IF;
3602: