DBA Data[Home] [Help]

APPS.GMI_QUANTITY_PVT dependencies on GMI_GLOBAL_GRP

Line 343: GMI_GLOBAL_GRP.Get_Item ( p_item_no => l_trans_rec.item_no

339: RAISE FND_API.G_EXC_ERROR;
340: END IF;
341:
342: -- Get the item details
343: GMI_GLOBAL_GRP.Get_Item ( p_item_no => l_trans_rec.item_no
344: , x_ic_item_mst => l_ic_item_mst_rec
345: , x_ic_item_cpg => l_ic_item_cpg_rec
346: );
347: -- If errors were found then raise exception

Line 483: GMI_GLOBAL_GRP.Get_Lot ( p_item_id => l_ic_item_mst_rec.item_id

479: END IF;
480: END IF;
481:
482:
483: GMI_GLOBAL_GRP.Get_Lot ( p_item_id => l_ic_item_mst_rec.item_id
484: , p_lot_no => l_trans_rec.lot_no
485: , p_sublot_no => l_trans_rec.sublot_no
486: , x_ic_lots_mst => l_ic_lots_mst_rec
487: , x_ic_lots_cpg => l_ic_lots_cpg_rec

Line 545: GMI_GLOBAL_GRP.Get_Lot ( p_item_id => l_ic_item_mst_rec.item_id

541: -- Initialize message list to remove 'Lot created' message
542: FND_MSG_PUB.Initialize;
543:
544: -- Get lot details for lot created
545: GMI_GLOBAL_GRP.Get_Lot ( p_item_id => l_ic_item_mst_rec.item_id
546: , p_lot_no => l_trans_rec.lot_no
547: , p_sublot_no => l_trans_rec.sublot_no
548: , x_ic_lots_mst => l_ic_lots_mst_rec
549: , x_ic_lots_cpg => l_ic_lots_cpg_rec

Line 579: GMI_GLOBAL_GRP.Get_Warehouse ( p_whse_code => l_trans_rec.from_whse_code

575:
576: -- Validate 'from' warehouse code (not applicable for change QC Grade)
577: IF (l_trans_type <> 5)
578: THEN
579: GMI_GLOBAL_GRP.Get_Warehouse ( p_whse_code => l_trans_rec.from_whse_code
580: , x_ic_whse_mst => l_ic_whse_mst_rec
581: );
582: IF (l_ic_whse_mst_rec.whse_code = ' ') OR
583: (l_ic_whse_mst_rec.delete_mark = 1)

Line 619: GMI_GLOBAL_GRP.Get_Warehouse ( p_whse_code =>l_trans_rec.to_whse_code

615:
616: -- If move inventory transaction then validate 'to' warehouse code
617: IF (l_trans_type = 3)
618: THEN
619: GMI_GLOBAL_GRP.Get_Warehouse ( p_whse_code =>l_trans_rec.to_whse_code
620: , x_ic_whse_mst => l_ic_whse_mst_rec
621: );
622: IF (l_ic_whse_mst_rec.whse_code = ' ') OR
623: (l_ic_whse_mst_rec.delete_mark = 1)

Line 680: GMI_GLOBAL_GRP.Get_loct_inv ( p_item_id =>l_item_id

676: -- exists at from warehouse / location
677: --LIZ Put this call outside the trans_type condition
678: -- IF (l_trans_type <> 5)
679: -- THEN
680: GMI_GLOBAL_GRP.Get_loct_inv ( p_item_id =>l_item_id
681: , p_whse_code =>l_trans_rec.from_whse_code
682: , p_lot_id =>l_lot_id
683: , p_location =>l_trans_rec.from_location
684: , x_ic_loct_inv =>l_ic_loct_inv_rec_from

Line 737: GMI_GLOBAL_GRP.Get_lot_inv ( p_item_id =>l_item_id

733: END IF;
734: -- If changing QC grade then check lot has inventory
735: ELSIF (l_trans_type = 5)
736: THEN
737: GMI_GLOBAL_GRP.Get_lot_inv ( p_item_id =>l_item_id
738: , p_lot_id =>l_lot_id
739: , x_lot_onhand =>l_lot_onhand
740: );
741: x_old_lot_status :=l_ic_loct_inv_rec_from.lot_status;

Line 1000: GMI_GLOBAL_GRP.Get_loct_inv

996:
997: -- If moving inventory, check inventory at to warehouse /location
998: IF (l_trans_type = 3)
999: THEN
1000: GMI_GLOBAL_GRP.Get_loct_inv
1001: ( p_item_id =>l_item_id
1002: , p_whse_code =>l_trans_rec.to_whse_code
1003: , p_lot_id =>l_lot_id
1004: , p_location =>l_trans_rec.to_location