Hi,
I am looking for SQL script that will return item quantity on hand for both Site ID and Bin number. Does anyone know of one?
Thanks,
Terry
*This post is locked for comments
I have the same question (0)

Hi,
I am looking for SQL script that will return item quantity on hand for both Site ID and Bin number. Does anyone know of one?
Thanks,
Terry
*This post is locked for comments
I have the same question (0)select ITEMNMBR,
LOCNCODE,
BIN,
QTYTYPE,
QUANTITY,
ATYALLOC
from IV00112
Where Quantity <> 0
order by ITEMNMBR, LOCNCODE, BIN