multiple warehouses

A

Amin

Hi everybody,

I'm designing a simple inventory managment database, that would be easy if I
only have one warehouse but I have multiple warehouse.

How can I handle inventory transfers between several warehouses? I prefer if
i dont use code.

Thanks in advance.
 
K

KARL DEWEY

Why not an Item table and transaction table.
Item --
ItemID - autonumber - primary key
Name
Size
Color
etc

Transact -
TransactID - autonumber - primary key
ItemID - number - long integer - foreign key
TransDate - DateTime
WareHouse
QTY
Type - Gain (Purchase), Loss (Consume), InvAdj (to make data match physical
inventory), Damage, etc.
Rmks

When item moved from one warehouse to the other there will be two
transactions.
 
A

Amin

Hi Karl,

Thanks for taking time responding to my post, your method is what I use for
one location warehouse I can't see how does that apply to multiple locatios
... maybe u have a different approach for a query?

Thanks again,
 
K

KARL DEWEY

The totals query would include the warehouse field to show where the items
and quanities can be found but omitted to show current balance.
 
A

Amin

Thanks I'll try it

KARL DEWEY said:
The totals query would include the warehouse field to show where the items
and quanities can be found but omitted to show current balance.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top