DBA Data[Home] [Help]

APPS.OE_DS_PVT dependencies on OE_ORDER_MISC_UTIL

Line 524: --l_converted_qty := OE_ORDER_MISC_UTIL.CONVERT_UOM (l_item_id,l_rcv_uom,l_order_uom,l_lot_quantity);

520: IF l_order_uom <> l_rcv_uom THEN
521: IF l_debug_level > 0 THEN
522: oe_debug_pub.add( 'Converting the unit of measurement ' , 5 ) ;
523: END IF;
524: --l_converted_qty := OE_ORDER_MISC_UTIL.CONVERT_UOM (l_item_id,l_rcv_uom,l_order_uom,l_lot_quantity);
525: -- Bug 12794393 Added two new IN parameters to handle the lot specific conversion
526:
527: l_converted_qty := OE_ORDER_MISC_UTIL.CONVERT_UOM (p_item_id => l_item_id
528: ,p_from_uom_code => l_rcv_uom

Line 527: l_converted_qty := OE_ORDER_MISC_UTIL.CONVERT_UOM (p_item_id => l_item_id

523: END IF;
524: --l_converted_qty := OE_ORDER_MISC_UTIL.CONVERT_UOM (l_item_id,l_rcv_uom,l_order_uom,l_lot_quantity);
525: -- Bug 12794393 Added two new IN parameters to handle the lot specific conversion
526:
527: l_converted_qty := OE_ORDER_MISC_UTIL.CONVERT_UOM (p_item_id => l_item_id
528: ,p_from_uom_code => l_rcv_uom
529: ,p_to_uom_code => l_order_uom
530: ,p_from_qty => l_lot_quantity
531: ,p_lot_number => l_lot -- 12794393

Line 1121: l_converted_qty := OE_ORDER_MISC_UTIL.CONVERT_UOM (

1117: oe_debug_pub.add('Converting the unit of measurement ' , 1 ) ;
1118: oe_debug_pub.add('Primary UOM:'||l_primary_uom , 1 ) ;
1119: oe_debug_pub.add('Transaction UOM:'||p_trx_uom , 1 ) ;
1120: END IF;
1121: l_converted_qty := OE_ORDER_MISC_UTIL.CONVERT_UOM (
1122: p_line_rec.inventory_item_id,
1123: p_trx_uom,
1124: l_primary_uom,
1125: p_transaction_detail_qty);