Question 1:
We have multiple warehouses, and each warehouse divided in Racks, Shelves and Bins. Is the correct way for location setup to define a tree like this:
Code:
Warehouse1
\--Rack 1
\--Shelve1
\--Bin 1
\--Bin 2
|
\--Bin 8
\--Shelve 2
\--Bin 1
...etc?
For a small warehouse, 20 racks, 5 shelves each, 6 bins.... that is 600 locations to create. That can't be serious, can it?
Question 2
Next, if I want to count my inventory, I need to generate lists ordered by rack, shelve and bin which include product name and quantity. These are the lists I use to hand to the counting people when they go into the warehouse for counting. Is there a way to generate those lists? You don't want to use lists sorted on product ID, do you?
jlinkels