473,405 Members | 2,176 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

inventory auditing help needed.

Hello all.
For the first time, our company might make use of the MS Access portion of
the office package. Problem is, I don't know it well enough to whip out a
desired program.

What we want to do is have two Tables. One table called PRODUCTS,
containing "partnumbers" with "descriptions". The other table called
"AUDITED PRODUCTS" that starts blank with the following fields:
"Tag_number", "Quantity","partnumber", and "description".

The goal is to manually audit our inventory and then enter the results into
a new database. We want to have a form that allows a data entry user to
type in the Tab number, the Quantity, the Partnumber, and the description
will automatically pull from the PRODUCT table in reference to the
partnumber entered. The FORM will then create a record of the entered info
into the AUDITED PRODUCTS table.
So far I've imported the PRODUCTS table and created a blank AUDITED PRODUCTS
table. Along with a simple form that will be used to build on the AUDITED
PRODUCTS table.
How do I make the form automatically pull the description from the PRODUCTS
table so that it is entered into the AUDITED PRODUCTS table?

BTW, sometimes the table might have a partnumber that is new an does not
exist in the PRODUCT table. Therefore the form needs to allow the user to
enter the description if necessary.

I'm betting that this is easy but, I was never given time to learn ACCESS.
Maybe this is the start of a new era for our company. Alright, don't laugh
to hard.

I look forward to any help you can offer.

-trode
Nov 12 '05 #1
5 1614
I may be missing something, but why 2 tables?
It looks to me as if you should only have 1 table and either it has got a
Tab /Tag number and quantity or they are blank. Obviously you already have
the part number and description loaded to your table.

Phil

"trode" <as***@for.it> wrote in message
news:MQ*******************@news4.srv.hcvlny.cv.net ...
Hello all.
For the first time, our company might make use of the MS Access portion of
the office package. Problem is, I don't know it well enough to whip out a
desired program.

What we want to do is have two Tables. One table called PRODUCTS,
containing "partnumbers" with "descriptions". The other table called
"AUDITED PRODUCTS" that starts blank with the following fields:
"Tag_number", "Quantity","partnumber", and "description".

The goal is to manually audit our inventory and then enter the results into a new database. We want to have a form that allows a data entry user to
type in the Tab number, the Quantity, the Partnumber, and the description
will automatically pull from the PRODUCT table in reference to the
partnumber entered. The FORM will then create a record of the entered info into the AUDITED PRODUCTS table.
So far I've imported the PRODUCTS table and created a blank AUDITED PRODUCTS table. Along with a simple form that will be used to build on the AUDITED
PRODUCTS table.
How do I make the form automatically pull the description from the PRODUCTS table so that it is entered into the AUDITED PRODUCTS table?

BTW, sometimes the table might have a partnumber that is new an does not
exist in the PRODUCT table. Therefore the form needs to allow the user to
enter the description if necessary.

I'm betting that this is easy but, I was never given time to learn ACCESS. Maybe this is the start of a new era for our company. Alright, don't laugh to hard.

I look forward to any help you can offer.

-trode

Nov 12 '05 #2
"Phil Stanton" <di********@stantonfamily.co.uk> wrote:
I may be missing something, but why 2 tables?
It looks to me as if you should only have 1 table and either it has got
a Tab /Tag number and quantity or they are blank. Obviously you already
have the part number and description loaded to your table.


Also, to store the same data twice would be at odds with normalisation.
Investigating normalisation theory might be a good starting point.

Regards,
Keith.
Nov 12 '05 #3

"Keith Wilby" <ke*********@AwayWithYerCrap.com> wrote in message
news:Xn************************@10.15.188.42...
"Phil Stanton" <di********@stantonfamily.co.uk> wrote:
I may be missing something, but why 2 tables?
It looks to me as if you should only have 1 table and either it has got
a Tab /Tag number and quantity or they are blank. Obviously you already
have the part number and description loaded to your table.


Also, to store the same data twice would be at odds with normalisation.
Investigating normalisation theory might be a good starting point.

Regards,
Keith.


So if I remove the "description" row from the PRODUCTS AUDITED table and
make a relationship using partnumber I will overcome the reduncency of data
but what about the rest of my problem?
Please note, the reason for a seperate database is so that it will be
tracked by the tag numbers. Some Tabs will have the same products.
I am sorry if I am not explaing this well. Maybe this will help: The Tags
are basic manilla tags used to take inventory. Some of our inventory spans
across multiple locations in an aisle. Therefore there will be an instance
in which more than one tag will have the same product counted for. The
seperate database consisting of the tags will allow us to create forms
showing tag totals of a same product.

Is there a book or similar code I can anaylize? The wizard is not close
enough to work from. Maybe there is a book that I can understand quickly?

In any event I am greatfull for your help.

cheers,
trode
Nov 12 '05 #4
Ok then
You need 1 table Products with
ProductID AutoNumber Key
ProductPartNo Is this text or numeric? Indexed No Duplicates
ProductDescription Text

Second Table TagQuantities
TagID AutoNumber Key (not stricly neccessary, but use it just the
same)
ProductID Number Long Required = Yes
Position ???
Date ????
Quantity

Create a relationship between the 2 tables on ProductID
Then create a query QProducts based on Products with the ProductDescription
Assending
Create a form Products based on QProducts

Create a form SubTagQuantities based on TagQuantities
With the Products form in design view, drag the SubTagQuantities Form into
the Products Form
On the properties of the Sub Form you should see Link Child Fields and Link
master Fields. They should both have ProductID in it.

This should allow you to add or amend product details in the main form and
add the quantities in the Sub form.

Still havn't fathomed out what Tabs are. Got the Tags bit

Phil

"trode" <as***@for.it> wrote in message
news:%_*******************@news4.srv.hcvlny.cv.net ...

"Keith Wilby" <ke*********@AwayWithYerCrap.com> wrote in message
news:Xn************************@10.15.188.42...
"Phil Stanton" <di********@stantonfamily.co.uk> wrote:
I may be missing something, but why 2 tables?
It looks to me as if you should only have 1 table and either it has got a Tab /Tag number and quantity or they are blank. Obviously you already have the part number and description loaded to your table.
Also, to store the same data twice would be at odds with normalisation.
Investigating normalisation theory might be a good starting point.

Regards,
Keith.


So if I remove the "description" row from the PRODUCTS AUDITED table and
make a relationship using partnumber I will overcome the reduncency of

data but what about the rest of my problem?
Please note, the reason for a seperate database is so that it will be
tracked by the tag numbers. Some Tabs will have the same products.
I am sorry if I am not explaing this well. Maybe this will help: The Tags are basic manilla tags used to take inventory. Some of our inventory spans across multiple locations in an aisle. Therefore there will be an instance in which more than one tag will have the same product counted for. The
seperate database consisting of the tags will allow us to create forms
showing tag totals of a same product.

Is there a book or similar code I can anaylize? The wizard is not close
enough to work from. Maybe there is a book that I can understand quickly?

In any event I am greatfull for your help.

cheers,
trode

Nov 12 '05 #5
Phil, not sure if this will be useful for your particular question, but if
you are looking for a general guidance on the issue of products, sales,
acquisitions, stocktakes, and calculating how many are on hand, this article
may be useful:
Inventory Control: Quantity on Hand
at:
http://allenbrowne.com/AppInventory.html

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"trode" <as***@for.it> wrote in message
news:%_*******************@news4.srv.hcvlny.cv.net ...

Is there a book or similar code I can anaylize? The wizard is not close
enough to work from. Maybe there is a book that I can understand quickly?

Nov 12 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: RdR | last post by:
Is it true that DB2 will have an auditing tool to be used for auditing requirements such as Sarbanes-Oxley, etc? Something called Websphere Compliance Auditing? Rumours have it that IBM has a new...
0
by: Rolan | last post by:
I know what I want to do regarding the average cost for inventory, but need some assistance to sort out some of the details to finalize an inventory table and query. Essentially, the information is...
4
by: Ed Rauscher | last post by:
Does ayone know what Class is used to enable Registry Auditing? Any help would be great.
14
by: Jonas | last post by:
Hi! I'm developing the middletiers of an ASP.NET application in VB.NET. I've got a business logic layer in which I would like to perform auditing to a database. Instead of making an auditing...
4
by: DeepDiver | last post by:
I am developing an inventory database in SQL Server. I realize there are many commercial (as well as some non-commercial) inventory offerings, but my client has specific requirements that would...
3
by: DeanL | last post by:
Hi All, I need some help regarding the creation of an auditing facility with Access 97. First off, let me say that the following design is not my idea but I'm in the unfortunate position of...
13
by: royaltiger | last post by:
I am trying to copy the inventory database in Building Access Applications by John L Viescas but when i try to run the database i get an error in the orders form when i click on the allocate...
0
by: south622 | last post by:
I'm taking a beginning Java course and I'm stuck in week eight of a nine week course. If anyone could help me I would greatly appreciate it. This assignment was due yesterday and each day I go past...
2
blyxx86
by: blyxx86 | last post by:
Great insight needed!! Good evening everyone.. I've come to a point where I can't even fathom how to go forward. I'm attempting to create a serialized inventory. I don't know where to begin....
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.