D
danielwalden
I am attempting to rework a database to track a manufacturing
processes. We generate a serial # for each part. There are 10
operations we would like to track. For each operation (10, 20, 30,
etc.) we want to track date completed and the name of technician that
completed. I am struggling to develop the correct structure.
Currently everything is in 1 table with checkboxes for each process
completion and then the 2 columns that correspond. I have been
requested to keep the user interface the same. This means that in a
from, for each serial # they see all the process listed along with a
checkbox for status and then text boxes for date and name. Any input
on how to design this correctly would be greatly appreciated.
My initial thoughts were below
tblSerialNumber
SerialNumber (PK)
Info1
Model #
tblStatus
SerialNumber (relationship to tblSerialNumber PK)
Operation (text)
Status (checkbox)
CompletedDate
OperatorName
I believe that this will not work as well though because everytime I
created a serial# I would have to create 10 records in the status
table so the user could use the same interface (check the box when
complete and fill out text boxes). This doesnt seem efficient.
I will also be creating status reports based on totals ready for each
operation, details of each Serial# at each OP, Etc.
Thanks again!
processes. We generate a serial # for each part. There are 10
operations we would like to track. For each operation (10, 20, 30,
etc.) we want to track date completed and the name of technician that
completed. I am struggling to develop the correct structure.
Currently everything is in 1 table with checkboxes for each process
completion and then the 2 columns that correspond. I have been
requested to keep the user interface the same. This means that in a
from, for each serial # they see all the process listed along with a
checkbox for status and then text boxes for date and name. Any input
on how to design this correctly would be greatly appreciated.
My initial thoughts were below
tblSerialNumber
SerialNumber (PK)
Info1
Model #
tblStatus
SerialNumber (relationship to tblSerialNumber PK)
Operation (text)
Status (checkbox)
CompletedDate
OperatorName
I believe that this will not work as well though because everytime I
created a serial# I would have to create 10 records in the status
table so the user could use the same interface (check the box when
complete and fill out text boxes). This doesnt seem efficient.
I will also be creating status reports based on totals ready for each
operation, details of each Serial# at each OP, Etc.
Thanks again!