DBA Data[Home] [Help]

APPS.POA_DBI_UOM_PKG dependencies on MTL_UOM_CLASS_CONVERSIONS

Line 82: from MTL_UOM_CLASS_CONVERSIONS

78: ,l_from_uom_class varchar2
79: ,l_to_uom_class varchar2) is
80: select conversion_rate,from_uom_class
81: -- to take care of two way conversions
82: from MTL_UOM_CLASS_CONVERSIONS
83: where inventory_item_id = l_item_id
84: and FROM_UOM_CLASS in (l_from_uom_class,l_to_uom_class)
85: and TO_UOM_CLASS in (l_from_uom_class,l_to_uom_class)
86: order by decode(FROM_UOM_CLASS,l_from_uom_class,1,2);