DBA Data[Home] [Help]

APPS.GME_SUPPLY_RES_PVT dependencies on INV_CONVERT

Line 232: l_reserved_qty2 := inv_convert.inv_um_convert(

228: l_reserved_qty := l_planned_qty;
229: IF l_fpo_rsv_rec.secondary_uom_code is not null
230: and l_fpo_rsv_rec.reservation_uom_code <> l_fpo_rsv_rec.secondary_uom_code
231: THEN
232: l_reserved_qty2 := inv_convert.inv_um_convert(
233: item_id => l_inventory_item_id
234: , precision => NULL
235: , from_quantity => l_reserved_qty
236: , from_unit => l_fpo_rsv_rec.reservation_uom_code

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

255: l_batch_rsv_rec.primary_reservation_quantity := l_reserved_qty;
256: l_batch_rsv_rec.secondary_reservation_quantity := l_reserved_qty2;
257: IF l_fpo_rsv_rec.reservation_uom_code <> l_fpo_rsv_rec.primary_uom_code
258: THEN
259: l_batch_rsv_rec.primary_reservation_quantity := inv_convert.inv_um_convert(
260: item_id => l_inventory_item_id
261: , precision => NULL
262: , from_quantity => l_reserved_qty
263: , from_unit => l_fpo_rsv_rec.reservation_uom_code

Line 1002: l_transfer_secondary := inv_convert.inv_um_convert(

998: -- If necessary, Compute the secondary quantity allowing for lot specific conversions
999: -- because we are moving from a high level reservation to a detailed reservation.
1000: -- ==================================================================================
1001: IF l_txn_lot is not NULL THEN
1002: l_transfer_secondary := inv_convert.inv_um_convert(
1003: item_id => l_rsv_rec.inventory_item_id
1004: , lot_number => l_txn_lot
1005: , organization_id => l_rsv_rec.organization_id
1006: , PRECISION => 5

Line 1497: l_available_quantity := inv_convert.inv_um_convert

1493: -- Determine the available supply quantity in the primary UOM
1494: -- ==========================================================
1495: l_available_quantity := NVL(p_matl_dtl_rec.wip_plan_qty, p_matl_dtl_rec.plan_qty) - p_matl_dtl_rec.actual_qty;
1496: IF l_rsv_tbl(1).primary_uom_code <> p_matl_dtl_rec.dtl_um THEN
1497: l_available_quantity := inv_convert.inv_um_convert
1498: (item_id => p_matl_dtl_rec.inventory_item_id
1499: ,precision => 5
1500: ,from_quantity => l_available_quantity
1501: ,from_unit => p_matl_dtl_rec.dtl_um

Line 1603: l_secondary_to_unreserve := inv_convert.inv_um_convert(

1599:
1600: ELSE -- res rec qty > l_primary_to_unreserve
1601:
1602: IF l_rsv_rec.secondary_uom_code is not NULL THEN
1603: l_secondary_to_unreserve := inv_convert.inv_um_convert(
1604: item_id => l_rsv_rec.inventory_item_id
1605: , lot_number => l_rsv_rec.lot_number
1606: , organization_id => l_rsv_rec.organization_id
1607: , precision => NULL