DBA Data[Home] [Help]

APPS.GME_COMPLETE_BATCH_PVT dependencies on GME_PENDING_PRODUCT_LOTS_PVT

Line 777: gme_pending_product_lots_pvt.get_pending_lot

773: x_return_status := l_return_status;
774: RAISE error_build_trxn;
775: END IF;
776: ELSE -- lot control... go to pending product lots
777: gme_pending_product_lots_pvt.get_pending_lot
778: (p_material_detail_id => p_material_dtl_rec.material_detail_id
779: ,x_return_status => l_return_status
780: ,x_pending_product_lot_tbl => l_pending_product_lot_tab);
781: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN

Line 1064: gme_pending_product_lots_pvt.relieve_pending_lot

1060: x_actual_qty := x_actual_qty + l_trxn_qty;
1061:
1062: -- If pending product lot, then decrease qty, entry remains if the qty goes to zero
1063: IF p_pp_lot_rec.pending_product_lot_id IS NOT NULL THEN
1064: gme_pending_product_lots_pvt.relieve_pending_lot
1065: (p_pending_lot_id => p_pp_lot_rec.pending_product_lot_id
1066: ,p_quantity => l_trxn_qty
1067: ,p_secondary_quantity => l_sec_qty
1068: ,x_return_status => x_return_status);