DBA Data[Home] [Help]

APPS.INV_MOVE_ORDER_PUB dependencies on INV_CACHE

Line 578: l_return_value := INV_CACHE.set_item_rec( p_organization_id => x_trolin_tbl(l_index).organization_id

574:
575:
576: IF x_trolin_tbl(l_index).return_status = fnd_api.g_ret_sts_success THEN --{
577:
578: l_return_value := INV_CACHE.set_item_rec( p_organization_id => x_trolin_tbl(l_index).organization_id
579: ,p_item_id => x_trolin_tbl(l_index).inventory_item_id);
580:
581: IF NOT l_return_value Then
582: print_debug('Error setting cache for inventory_item', l_api_name);

Line 586: l_reservable_type := INV_CACHE.item_rec.reservable_type;

582: print_debug('Error setting cache for inventory_item', l_api_name);
583: RAISE fnd_api.g_exc_unexpected_error;
584: END IF;
585:
586: l_reservable_type := INV_CACHE.item_rec.reservable_type;
587:
588: IF l_reservable_type = 2 then
589: l_found_backorder_cache := FALSE;
590: ELSE

Line 934: l_item_loc_ctrl := INV_CACHE.item_rec.location_control_code;

930: FETCH get_sub_loc_ctrl INTO l_sub_loc_ctrl;
931: CLOSE get_sub_loc_ctrl;
932: IF l_sub_loc_ctrl = 5 THEN
933: BEGIN
934: l_item_loc_ctrl := INV_CACHE.item_rec.location_control_code;
935: EXCEPTION
936: WHEN OTHERS THEN
937: print_debug('Exception retrieving item locator control from cache ' || sqlerrm
938: ,'INV_Move_Order_PUB.Create_Move_Order_Lines');