DBA Data[Home] [Help]

APPS.OE_ORDER_MISC_UTIL dependencies on INV_CONVERT

Line 144: of api inv_convert.inv_um_convert to handle the lot specific conversion*/

140:
141: END GET_ITEM_INFO;
142:
143: /* Bug 12794393 --made changes in the convert_uom function signature so as to call the overrided version
144: of api inv_convert.inv_um_convert to handle the lot specific conversion*/
145:
146: FUNCTION CONVERT_UOM
147: (
148: p_item_id IN NUMBER

Line 162: l_new_qty := INV_CONVERT.INV_UM_CONVERT(item_id => p_item_id

158: BEGIN
159: IF p_from_qty IS NOT NULL THEN
160:
161: IF p_lot_number IS NOT NULL THEN
162: l_new_qty := INV_CONVERT.INV_UM_CONVERT(item_id => p_item_id
163: ,lot_number => p_lot_number -- 12794393
164: ,organization_id => p_organization_id -- 12794393
165: ,PRECISION =>5 -- 14323382 9 -- Precision (Default precision is 6 decimals)
166: ,from_quantity => p_from_qty

Line 173: l_new_qty := INV_CONVERT.INV_UM_CONVERT(item_id => p_item_id

169: ,from_name => NULL -- From uom name
170: ,to_name => NULL -- To uom name
171: );
172: ELSE
173: l_new_qty := INV_CONVERT.INV_UM_CONVERT(item_id => p_item_id
174: ,PRECISION => 5 -- 14323382 9 -- Precision (Default precision is 6 decimals)
175: ,from_quantity => p_from_qty
176: ,from_unit => p_from_uom_code
177: ,to_unit => p_to_uom_code