Need simple database for stock control

mz007

New member
Local time
Today, 11:30
Joined
Dec 16, 2010
Messages
1
hi,

can anyone advise me on creating simple database for stock control,
i am new to database stuff. well so far i have created tables such as





i think i may want to change the column "unit on order" to "outgoing stock" and i want to know how would it update if i put figure in outgoing stock. that will show me whats current stock. thanks
 

Attachments

  • untitled.JPG
    untitled.JPG
    41.5 KB · Views: 2,521
Last edited:
try the demonstration MS Inventory template - it's not bad at all.

google "ms sample databases" - that will find it.
 
Have you looked at the inventory template at MS office online in the business template area?

I am currently in month 9 of building your own. It has been a real learning experience for me.
 
Last edited:
Hi mz007,

For greater visibility, i have included your table's fieldname below :

productid
product_name
product_description
serial_number
units_in_stock
units_on_order
unit_price
start_date

To begin with, the above table would fit to function as your Product Master Table, helping you to store your product profile, not for your stock control purpose. You may need to create a new stock table and referenced the transaction rows to this product_table (via productid as FK, refer book from accountingdes.com). To devise the procedure for updating your stock balance and unit_cost, look for Joe Celko's tips on the fifo and average sprocs, it is created as a UDF from a DBMS.

Good Luck:)
 

Users who are viewing this thread

Back
Top Bottom