DBA Data[Home] [Help]

APPS.GME_COMPLETE_BATCH_PVT dependencies on GME_PENDING_PRODUCT_LOTS_PVT

Line 770: gme_pending_product_lots_pvt.get_pending_lot

766: x_return_status := l_return_status;
767: RAISE error_build_trxn;
768: END IF;
769: ELSE -- lot control... go to pending product lots
770: gme_pending_product_lots_pvt.get_pending_lot
771: (p_material_detail_id => p_material_dtl_rec.material_detail_id
772: ,x_return_status => l_return_status
773: ,x_pending_product_lot_tbl => l_pending_product_lot_tab);
774: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN

Line 996: gme_pending_product_lots_pvt.relieve_pending_lot

992: x_actual_qty := x_actual_qty + l_trxn_qty;
993:
994: -- If pending product lot, then decrease qty, entry remains if the qty goes to zero
995: IF p_pp_lot_rec.pending_product_lot_id IS NOT NULL THEN
996: gme_pending_product_lots_pvt.relieve_pending_lot
997: (p_pending_lot_id => p_pp_lot_rec.pending_product_lot_id
998: ,p_quantity => l_trxn_qty
999: ,p_secondary_quantity => l_sec_qty
1000: ,x_return_status => x_return_status);