DBA Data[Home] [Help]

APPS.INV_RCV_STD_RCPT_APIS dependencies on INV_RCV_CACHE

Line 1398: l_txn_qty := inv_rcv_cache.convert_qty

1394:
1395: -- it is txn qty in primary uom passed from PackUnpack
1396: -- need to convert it to txn uom qty here
1397: IF (l_primary_uom <> p_txn_uom_code) THEN
1398: l_txn_qty := inv_rcv_cache.convert_qty
1399: (p_inventory_item_id => p_item_id
1400: ,p_from_qty => p_primary_qty
1401: ,p_from_uom_code => l_primary_uom
1402: ,p_to_uom_code => p_txn_uom_code);

Line 5341: l_lot_prm_quantity := inv_rcv_cache.convert_qty

5337: IF l_lot_control_code > 1 THEN
5338: IF l_lot_number IS NOT NULL THEN
5339: --Convert the lot quantity into Item's Primary UOM code
5340: IF l_uom_code <> l_primary_uom_code THEN
5341: l_lot_prm_quantity := inv_rcv_cache.convert_qty
5342: (p_inventory_item_id => l_inventory_item_id
5343: ,p_from_qty => l_quantity
5344: ,p_from_uom_code => l_uom_code
5345: ,p_to_uom_code => l_primary_uom_code);