NXMold
Technical User
- Jul 22, 2008
- 104
I have a Bill of Materials (tblBOM), and a list of items from purchase orders (tblPOItems). Each PO Item has an BOM Detail Number, Ordered Quantity, and a Received check box.
Now I can build queries that show a sum total ordered quantity for each detail number, and a sum total received quantity. These queries are not updateable.
Next I make a query to join these totals with the bom table, giving me the BOM with Specified quantity, Ordered quantity, and Received quantity. This way I can color-code the bom Form showing items that have pending orders, un-ordered, etc. But this query (and thus, form) is not updateable. Is there any way to avoid that?
I think I could use dsum, but the performance is not acceptable. I could make the form unbound and handle all the data in code... but I don't want such a complex solution. Right now I have a toggle on the form that switches to a stripped down query to allow edits.
Now I can build queries that show a sum total ordered quantity for each detail number, and a sum total received quantity. These queries are not updateable.
Next I make a query to join these totals with the bom table, giving me the BOM with Specified quantity, Ordered quantity, and Received quantity. This way I can color-code the bom Form showing items that have pending orders, un-ordered, etc. But this query (and thus, form) is not updateable. Is there any way to avoid that?
I think I could use dsum, but the performance is not acceptable. I could make the form unbound and handle all the data in code... but I don't want such a complex solution. Right now I have a toggle on the form that switches to a stripped down query to allow edits.