DBA Data[Home] [Help]

APPS.CSD_UPDATE_PROGRAMS_PVT dependencies on INV_CONVERT

Line 411: x_result_quantity := inv_convert.inv_um_convert(

407: -- from one UOM to another UOM.
408: -- Only if the repair order UOM is different than the
409: -- l_from_uom_code, the inv api is called
410: IF p_to_uom_code <> l_from_uom_code THEN
411: x_result_quantity := inv_convert.inv_um_convert(
412: p_item_id ,
413: 2,
414: p_from_quantity,
415: l_from_uom_code,

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

416: p_to_uom_code,
417: null,
418: null);
419:
420: -- if the inv_convert api fails then it returns -99999
421: IF x_result_quantity < 0 then
422: IF ( l_error_level >= G_debug_level) THEN
423: fnd_message.set_name('CSD','CSD_INV_UM_CONV_FAILED');
424: FND_LOG.MESSAGE(l_error_level,l_mod_name, FALSE);