DBA Data[Home] [Help]

APPS.INV_RCV_STD_RCPT_APIS dependencies on INV_RCV_CACHE

Line 1356: l_txn_qty := inv_rcv_cache.convert_qty

1352:
1353: -- it is txn qty in primary uom passed from PackUnpack
1354: -- need to convert it to txn uom qty here
1355: IF (l_primary_uom <> p_txn_uom_code) THEN
1356: l_txn_qty := inv_rcv_cache.convert_qty
1357: (p_inventory_item_id => p_item_id
1358: ,p_from_qty => p_primary_qty
1359: ,p_from_uom_code => l_primary_uom
1360: ,p_to_uom_code => p_txn_uom_code);

Line 5066: l_lot_prm_quantity := inv_rcv_cache.convert_qty

5062: IF l_lot_control_code > 1 THEN
5063: IF l_lot_number IS NOT NULL THEN
5064: --Convert the lot quantity into Item's Primary UOM code
5065: IF l_uom_code <> l_primary_uom_code THEN
5066: l_lot_prm_quantity := inv_rcv_cache.convert_qty
5067: (p_inventory_item_id => l_inventory_item_id
5068: ,p_from_qty => l_quantity
5069: ,p_from_uom_code => l_uom_code
5070: ,p_to_uom_code => l_primary_uom_code);