DBA Data[Home] [Help]

APPS.CSD_UPDATE_PROGRAMS_PVT dependencies on INV_CONVERT

Line 404: x_result_quantity := inv_convert.inv_um_convert(

400: -- from one UOM to another UOM.
401: -- Only if the repair order UOM is different than the
402: -- l_from_uom_code, the inv api is called
403: IF p_to_uom_code <> l_from_uom_code THEN
404: x_result_quantity := inv_convert.inv_um_convert(
405: p_item_id ,
406: 2,
407: p_from_quantity,
408: l_from_uom_code,

Line 413: -- if the inv_convert api fails then it returns -99999

409: p_to_uom_code,
410: null,
411: null);
412:
413: -- if the inv_convert api fails then it returns -99999
414: IF x_result_quantity < 0 then
415: IF ( l_error_level >= G_debug_level) THEN
416: fnd_message.set_name('CSD','CSD_INV_UM_CONV_FAILED');
417: FND_LOG.MESSAGE(l_error_level,l_mod_name, FALSE);