DBA Data[Home] [Help]

APPS.GMI_ITEM_LOT_CONV_PUB dependencies on GMI_GLOBAL_GRP

Line 147: GMI_GLOBAL_GRP.Get_Item ( p_item_no => l_item_cnv_rec.item_no

143: l_item_cnv_rec.from_uom :=l_item_cnv_rec.from_uom;
144:
145: -- Get the item details ensuring that the item is active and not deleted
146:
147: GMI_GLOBAL_GRP.Get_Item ( p_item_no => l_item_cnv_rec.item_no
148: , x_ic_item_mst => l_ic_item_mst_rec
149: , x_ic_item_cpg => l_ic_item_cpg_rec
150: );
151:

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

195: -- Get the lot details ensuring that the lot is not deleted.
196: -- This may be the default lot for the item.
197:
198:
199: GMI_GLOBAL_GRP.Get_Lot ( p_item_id => l_ic_item_mst_rec.item_id
200: , p_lot_no => l_item_cnv_rec.lot_no
201: , p_sublot_no => l_item_cnv_rec.sublot_no
202: , x_ic_lots_mst => l_ic_lots_mst_rec
203: , x_ic_lots_cpg => l_ic_lots_cpg_rec

Line 221: GMI_GLOBAL_GRP.Get_Um ( p_um_code => l_item_cnv_rec.from_uom

217:
218: -- Get UOM details of the from Unit of Measure
219:
220:
221: GMI_GLOBAL_GRP.Get_Um ( p_um_code => l_item_cnv_rec.from_uom
222: , x_sy_uoms_mst => l_sy_uoms_mst_rec_from
223: , x_sy_uoms_typ => l_sy_uoms_typ_rec_from
224: , x_error_code => l_error_code
225: );

Line 249: GMI_GLOBAL_GRP.Get_Um ( p_um_code => l_item_cnv_rec.to_uom

245: END IF;
246:
247: -- Get UOM details of the to Unit of Measure
248:
249: GMI_GLOBAL_GRP.Get_Um ( p_um_code => l_item_cnv_rec.to_uom
250: , x_sy_uoms_mst => l_sy_uoms_mst_rec_to
251: , x_sy_uoms_typ => l_sy_uoms_typ_rec_to
252: , x_error_code => l_error_code
253: );

Line 290: GMI_GLOBAL_GRP.Get_Um ( p_um_code => l_ic_item_mst_rec.item_um

286:
287: -- Get UOM details of the item primary Unit of Measure
288: -- This should not produce any errors but we'll check for them anyway.
289:
290: GMI_GLOBAL_GRP.Get_Um ( p_um_code => l_ic_item_mst_rec.item_um
291: , x_sy_uoms_mst => l_sy_uoms_mst_rec_um1
292: , x_sy_uoms_typ => l_sy_uoms_typ_rec_um1
293: , x_error_code => l_error_code
294: );