DBA Data[Home] [Help]

APPS.GME_SUPPLY_RES_PVT dependencies on INV_CONVERT

Line 248: l_reserved_qty2 := inv_convert.inv_um_convert(

244: l_reserved_qty := l_planned_qty;
245: IF l_fpo_rsv_rec.secondary_uom_code is not null
246: and l_fpo_rsv_rec.reservation_uom_code <> l_fpo_rsv_rec.secondary_uom_code
247: THEN
248: l_reserved_qty2 := inv_convert.inv_um_convert(
249: item_id => l_inventory_item_id
250: , precision => NULL
251: , from_quantity => l_reserved_qty
252: , from_unit => l_fpo_rsv_rec.reservation_uom_code

Line 275: l_batch_rsv_rec.primary_reservation_quantity := inv_convert.inv_um_convert(

271: l_batch_rsv_rec.primary_reservation_quantity := l_reserved_qty;
272: l_batch_rsv_rec.secondary_reservation_quantity := l_reserved_qty2;
273: IF l_fpo_rsv_rec.reservation_uom_code <> l_fpo_rsv_rec.primary_uom_code
274: THEN
275: l_batch_rsv_rec.primary_reservation_quantity := inv_convert.inv_um_convert(
276: item_id => l_inventory_item_id
277: , precision => NULL
278: , from_quantity => l_reserved_qty
279: , from_unit => l_fpo_rsv_rec.reservation_uom_code

Line 1059: l_transfer_secondary := inv_convert.inv_um_convert(

1055: /* Bug#7422975 Added the bwlo conidion to convert the secondary
1056: quantity only when the secondary uom is not null */
1057:
1058: IF l_txn_lot IS NOT NULL and l_rsv_rec.secondary_uom_code IS NOT NULL THEN
1059: l_transfer_secondary := inv_convert.inv_um_convert(
1060: item_id => l_rsv_rec.inventory_item_id
1061: , lot_number => l_txn_lot
1062: , organization_id => l_rsv_rec.organization_id
1063: , PRECISION => 5

Line 1560: l_available_quantity := inv_convert.inv_um_convert

1556: -- Determine the available supply quantity in the primary UOM
1557: -- ==========================================================
1558: l_available_quantity := NVL(p_matl_dtl_rec.wip_plan_qty, p_matl_dtl_rec.plan_qty) - p_matl_dtl_rec.actual_qty;
1559: IF l_rsv_tbl(1).primary_uom_code <> p_matl_dtl_rec.dtl_um THEN
1560: l_available_quantity := inv_convert.inv_um_convert
1561: (item_id => p_matl_dtl_rec.inventory_item_id
1562: ,precision => 5
1563: ,from_quantity => l_available_quantity
1564: ,from_unit => p_matl_dtl_rec.dtl_um

Line 1666: l_secondary_to_unreserve := inv_convert.inv_um_convert(

1662:
1663: ELSE -- res rec qty > l_primary_to_unreserve
1664:
1665: IF l_rsv_rec.secondary_uom_code is not NULL THEN
1666: l_secondary_to_unreserve := inv_convert.inv_um_convert(
1667: item_id => l_rsv_rec.inventory_item_id
1668: , lot_number => l_rsv_rec.lot_number
1669: , organization_id => l_rsv_rec.organization_id
1670: , precision => NULL