B
BG
Here's my quandary:
In our research facility, processing of product involves
several steps. The first 2 steps are the same for all
product. I capture that information in 2 tables;
tblComposition and tblManufacturing. TblComposition has
fields for LotID, Component, and Amount of Component (a
LotId can have 1-8 components). TblManufacturing has
several fields including LotID, MfgEquip, Operator, etc.
Some Lots are split out at this point to "child" Lots and
receive additional processing, tblPostProcessing with
fields LotID,ParentID,PPEquip, etc.. Both parent and child
go on to get tested and assembled. When I run queries on
the end product I need to know the Composition and
Manufacturing details so to simplify the process I thought
it best to copy that information from parent to child lot.
An append query or 2 seems like a good option but I need a
way for users to execute the queries perhaps from the form
when the child Lot gets created and postprocessed. Any
ideas on this or a better method to accomplish what I
need? Thanks for the help.
In our research facility, processing of product involves
several steps. The first 2 steps are the same for all
product. I capture that information in 2 tables;
tblComposition and tblManufacturing. TblComposition has
fields for LotID, Component, and Amount of Component (a
LotId can have 1-8 components). TblManufacturing has
several fields including LotID, MfgEquip, Operator, etc.
Some Lots are split out at this point to "child" Lots and
receive additional processing, tblPostProcessing with
fields LotID,ParentID,PPEquip, etc.. Both parent and child
go on to get tested and assembled. When I run queries on
the end product I need to know the Composition and
Manufacturing details so to simplify the process I thought
it best to copy that information from parent to child lot.
An append query or 2 seems like a good option but I need a
way for users to execute the queries perhaps from the form
when the child Lot gets created and postprocessed. Any
ideas on this or a better method to accomplish what I
need? Thanks for the help.