cancel
Showing results for 
Search instead for 
Did you mean: 

Changing item from no batch tracking to enabling batch tracking

Former Member
0 Kudos

I have a few items that were originally set up having no batch tracking enabled. I removed all inventory and demand for these items. I tried to change the tracking from no tracking to batch tracking and it will not let me change as it says there is inventory of these items in the system. However Looking at the item there is no inventory. I am assuming there is maybe a .0001 of inventory and it does not show up visibly. Any ideas how to solve this without creating new item numbers for these items. Jim

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Jim,

You may check these item on hand status by a simple query:

SELECT T0.ItemCode, T0.Onhand FROM dbo.OITM T0

WHERE T0.Onhand > 0 and T0.ItemCode = '[%0\]'

You may use Goods Issue to remove those onhand.

Thanks,

Gordon