DBA Data[Home] [Help]

APPS.MTL_LOT_UOM_CONV_PVT dependencies on INV_CACHE

Line 146: IF NOT (INV_CACHE.set_item_rec(p_organization_id, p_inventory_item_id)) THEN

142: Call to get cache values if item is not
143: already cached.
144: ==========================================*/
145:
146: IF NOT (INV_CACHE.set_item_rec(p_organization_id, p_inventory_item_id)) THEN
147: RETURN G_FALSE;
148: END IF;
149:
150: /*============================================

Line 196: IF (INV_CACHE.item_rec.serial_number_control_code <> 1) THEN

192: /*========================================
193: Check if Item is serially controlled.
194: ========================================*/
195:
196: IF (INV_CACHE.item_rec.serial_number_control_code <> 1) THEN
197: FND_MESSAGE.SET_NAME('INV','INV_LOT_SERIAL_SUPPORT');
198: FND_MSG_PUB.ADD;
199: RETURN G_FALSE;
200: END IF;

Line 207: IF (INV_CACHE.item_rec.lot_control_code <> 2) THEN

203: Check if Item is lot controlled.
204: (1 no control 2 full)
205: ========================================*/
206:
207: IF (INV_CACHE.item_rec.lot_control_code <> 2) THEN
208: FND_MESSAGE.SET_NAME('INV','INV_NOTLOTCTL');
209: FND_MSG_PUB.ADD;
210: RETURN G_FALSE;
211: END IF;

Line 217: l_revision := INV_CACHE.item_rec.revision_qty_control_code;

213: /*========================================
214: Check if onhand availability problem.
215: ========================================*/
216:
217: l_revision := INV_CACHE.item_rec.revision_qty_control_code;
218:
219:
220: l_header_id := p_header_id;
221: