DBA Data[Home] [Help]

APPS.GMI_OM_UTIL dependencies on OE_CODE_CONTROL

Line 128: IF (OE_CODE_CONTROL.Get_Code_Release_Level >= '110510' ) THEN -- OPM 2380194

124: ELSE
125: l_trans_qty := r_trans_dtl.trans_qty;
126: END IF;
127:
128: IF (OE_CODE_CONTROL.Get_Code_Release_Level >= '110510' ) THEN -- OPM 2380194
129: l_trans_qty2 := r_trans_dtl.trans_qty2;
130: END IF;
131:
132: l_sum_return_qty := l_sum_return_qty + l_trans_qty;

Line 142: IF ( OE_CODE_CONTROL.Get_Code_Release_Level >= '110510') THEN

138: l_lot_trxn_qty := l_rma_qty - (l_sum_return_qty - l_trans_qty);
139: l_sum_return_qty := l_rma_qty; /* this assignment is for exiting from loop */
140:
141: /* need to derive secondary qty because partial lot qty is considered */
142: IF ( OE_CODE_CONTROL.Get_Code_Release_Level >= '110510') THEN
143: IF (rec_item_dtl.dualum_ind > 0 ) THEN
144: l_lot_trxn_qty2 := GMI_RESERVATION_UTIL.Get_Opm_converted_qty
145: ( p_apps_item_id => p_reference_line_rec.inventory_item_id
146: ,p_organization_id => p_reference_line_rec.ship_from_org_id

Line 157: IF (OE_CODE_CONTROL.Get_Code_Release_Level >= '110510' ) THEN

153: END IF;
154: END IF;
155: ELSE
156: l_lot_trxn_qty := l_trans_qty;
157: IF (OE_CODE_CONTROL.Get_Code_Release_Level >= '110510' ) THEN
158: l_lot_trxn_qty2 := l_trans_qty2;
159: END IF;
160: END IF;
161:

Line 171: IF (OE_CODE_CONTROL.Get_Code_Release_Level >= '110510' ) THEN -- OPM 2380194

167: l_lot_serial_tbl(l_number) := OE_ORDER_PUB.G_MISS_LOT_SERIAL_REC;
168: l_lot_serial_tbl(l_number).lot_number := r_trans_dtl.lot_no;
169: l_lot_serial_tbl(l_number).quantity := l_lot_trxn_qty;
170:
171: IF (OE_CODE_CONTROL.Get_Code_Release_Level >= '110510' ) THEN -- OPM 2380194
172: l_lot_serial_tbl(l_number).sublot_number := r_trans_dtl.sublot_no;
173: l_lot_serial_tbl(l_number).quantity2 := l_lot_trxn_qty2;
174: END IF;
175: