dbTalk Databases Forums  

Warehouse templates

comp.databases.ms-access comp.databases.ms-access


Discuss Warehouse templates in the comp.databases.ms-access forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Poul Erik
 
Posts: n/a

Default Warehouse templates - 03-23-2010 , 11:04 AM






Hallo

Is there someone here who could help me?
I don’t anything about access, but I need a template which I could use
when I buy / sell parts.
I also should know how many of the parts I have in the warehouse.

I don’t know if I should use three tables one for both buying and
selling parts, and one for keeping me updated on how many of these
parts is in the warehouse.

The information I need in the table is Date, Ware description,
Quantity, Price each, Costs, Total,

Poul

--

Reply With Quote
  #2  
Old   
Salad
 
Posts: n/a

Default Re: Warehouse templates - 03-23-2010 , 12:43 PM






Poul Erik wrote:

Quote:
Hallo

Is there someone here who could help me?
I don’t anything about access, but I need a template which I could use
when I buy / sell parts.
I also should know how many of the parts I have in the warehouse.

I don’t know if I should use three tables one for both buying and
selling parts, and one for keeping me updated on how many of these
parts is in the warehouse.

The information I need in the table is Date, Ware description,
Quantity, Price each, Costs, Total,

Poul

When you open Access you can open a database or you can select a
template. There are Order Mgt and Inventory Mgt database templates you
can dl from MS.

You could build Excel files and then import (File/GetExternalData/Import
or Link) them. Import you can modify the data, link is Read-only.

If you don't know anything about Access, you might want to consider
hiring someone that can put it together. Maybe use CraigsList under
computer gigs.

Reply With Quote
  #3  
Old   
Roger
 
Posts: n/a

Default Re: Warehouse templates - 03-23-2010 , 01:45 PM



On Mar 23, 11:04*am, "Poul Erik" <> wrote:
Quote:
Hallo

Is there someone here who could help me?
I don’t anything about access, but I need a template which I could use
when I buy / sell parts.
I also should know how many of the parts I have in the warehouse.

I don’t know if I should use three tables one for both buying and
selling parts, and one for keeping me updated on how many of these
parts is in the warehouse.

The information I need in the table is Date, Ware description,
Quantity, Price each, Costs, Total,

Poul

--
I would use the following tables, not need to capture totals since it
can be
calculated using a query (or two)
tblItem
itemId
description
qtyOnHand

tblItemTransaction
transactionId (autonumber)
itemId
transType (S - sale, P - purchase, A - adjustment)
transDate
transQty
transCost
transPrice

qryTransQty
-----------
select itemId
, sum(IIf(transType = 'S', -transQty,
IIf(transType = 'P', transQty,
transQty) as tQty
from tblItemTransaction
group by itemId


qtyQtyOnHand
------------
select tblItem.itemId
, tblItem.qtyOnHand + qryTransQty.tQty as onHand
from tblItem left join
qryTransQty on tblItem.itemId = qryTransQty.itemId

the reason, tblItem as qtyOnHand, it allows you to flush transactions
out of tblItemTransaction and store the next quantity as qtyOnHand

of course, the flushing activity needs to deal with costing, be it
average cost, fifo cost, last cost,....

Reply With Quote
  #4  
Old   
Poul
 
Posts: n/a

Default Re: Warehouse templates - 03-24-2010 , 10:06 AM



Roger wrote:

Quote:
I would use the following tables, not need to capture totals since it
can be
calculated using a query (or two)
tblItem
itemId
description
qtyOnHand

tblItemTransaction
transactionId (autonumber)
itemId
transType (S - sale, P - purchase, A - adjustment)
transDate
transQty
transCost
transPrice

qryTransQty
-----------
select itemId
, sum(IIf(transType = 'S', -transQty,
IIf(transType = 'P', transQty,
transQty) as tQty
from tblItemTransaction
group by itemId


qtyQtyOnHand
------------
select tblItem.itemId
, tblItem.qtyOnHand + qryTransQty.tQty as onHand
from tblItem left join
qryTransQty on tblItem.itemId = qryTransQty.itemId

the reason, tblItem as qtyOnHand, it allows you to flush transactions
out of tblItemTransaction and store the next quantity as qtyOnHand

of course, the flushing activity needs to deal with costing, be it
average cost, fifo cost, last cost,....

Hallo Roger and thank you.

But as I write I'm totaly novice on ms-access, I bought a little book
for beginner, but there was nothing i could use in this execpt for some
simple tables, query and reports.

I know it is much to ask about, but is it possibly you could put your
information in a db and mail it to me for analysing.

Poul
givskov(nospam)@adslhome.dk
--

Reply With Quote
  #5  
Old   
Poul
 
Posts: n/a

Default Re: Warehouse templates - 03-25-2010 , 11:57 PM



Roger wrote:

Quote:
I would use the following tables, not need to capture totals since it
can be
calculated using a query (or two)
tblItem
itemId
description
qtyOnHand

tblItemTransaction
transactionId (autonumber)
itemId
transType (S - sale, P - purchase, A - adjustment)
transDate
transQty
transCost
transPrice

qryTransQty
-----------
select itemId
, sum(IIf(transType = 'S', -transQty,
IIf(transType = 'P', transQty,
transQty) as tQty
from tblItemTransaction
group by itemId


qtyQtyOnHand
------------
select tblItem.itemId
, tblItem.qtyOnHand + qryTransQty.tQty as onHand
from tblItem left join
qryTransQty on tblItem.itemId = qryTransQty.itemId

the reason, tblItem as qtyOnHand, it allows you to flush transactions
out of tblItemTransaction and store the next quantity as qtyOnHand

of course, the flushing activity needs to deal with costing, be it
average cost, fifo cost, last cost,....
Hello Roger
As I write I'm totaly newbee in access, is the first two parts tables,
and the last tow sections is this queryes?

Poul

Is this table one?

tblItem
Quote:
itemId
description
qtyOnHand
--

and this table two?

Quote:
tblItemTransaction
transactionId (autonumber)
itemId
transType (S - sale, P - purchase, A - adjustment)
transDate
transQty
transCost
transPrice

Reply With Quote
  #6  
Old   
Roger
 
Posts: n/a

Default Re: Warehouse templates - 03-26-2010 , 03:04 AM



On Mar 25, 11:57*pm, "Poul" <givskov(nospam)@adslhome.dk > wrote:
Quote:
Roger wrote:

I would use the following tables, not need to capture totals since it
can be
calculated using a query (or two)
tblItem
itemId
description
qtyOnHand

tblItemTransaction
transactionId (autonumber)
itemId
transType (S - sale, P - purchase, A - adjustment)
transDate
transQty
transCost
transPrice

qryTransQty
-----------
select itemId
* * *, sum(IIf(transType = 'S', -transQty,
* * * * * *IIf(transType = 'P', transQty,
* * * * * *transQty) as tQty
* from tblItemTransaction
*group by itemId

qtyQtyOnHand
------------
select tblItem.itemId
* * *, tblItem.qtyOnHand + qryTransQty.tQty as onHand
* from tblItem left join
* * * *qryTransQty on tblItem.itemId = qryTransQty.itemId

the reason, tblItem as qtyOnHand, it allows you to flush transactions
out of tblItemTransaction and store the next quantity as qtyOnHand

of course, the flushing activity needs to deal with costing, be it
average cost, fifo cost, last cost,....

*Hello Roger
As I write I'm totaly newbee in access, is the first two parts tables,
and the last tow sections is this queryes?

Poul

Is this table one?

* tblItem> itemId
description
qtyOnHand

--

and this table two?



tblItemTransaction
transactionId (autonumber)
itemId
transType (S - sale, P - purchase, A - adjustment)
transDate
transQty
transCost
transPrice- Hide quoted text -

- Show quoted text -- Hide quoted text -

- Show quoted text -
yes to all your questions

Reply With Quote
  #7  
Old   
Poul
 
Posts: n/a

Default Re: Warehouse templates - 03-27-2010 , 02:35 AM



Roger wrote:
Quote:
yes to all your questions
Thank you Roger you have been at great help.

Poul

--

Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.