A
AB via AccessMonster.com
I have a query that joins a table to another query with some calculated
values.
The same query in a MS Access .mdb file produces a recodset that can be
edited - but in an .adp file, the recordset id Not updateable.
I crearted a form bound to the query, and selected tblStock as the Unique
table, and it is still not updateable?
query below (if it is of any help)
---------------------------------
SELECT qryStock.ID, qryStock.CategoryID, qryStock.QuoteCategoryID,
qryStock.OriginalCategoryID, qryStock.StockNumber, qryStock.Description,
qryStock.ReorderPoint, qryStock.ReorderQty, qryStock.Unit,
qryStock.ListPrice, qryStock.CostMultiplier, qryStock.SellMultiplier,
viewCalculatedStockOnHand.Ordered, viewCalculatedStockOnHand.Received,
viewCalculatedStockOnHand.Backordered,
viewCalculatedStockOnHand.Adjustments, viewCalculatedStockOnHand.[On Hand]
FROM qryStock INNER JOIN viewCalculatedStockOnHand ON qryStock.ID =
viewCalculatedStockOnHand.StockID;
values.
The same query in a MS Access .mdb file produces a recodset that can be
edited - but in an .adp file, the recordset id Not updateable.
I crearted a form bound to the query, and selected tblStock as the Unique
table, and it is still not updateable?
query below (if it is of any help)
---------------------------------
SELECT qryStock.ID, qryStock.CategoryID, qryStock.QuoteCategoryID,
qryStock.OriginalCategoryID, qryStock.StockNumber, qryStock.Description,
qryStock.ReorderPoint, qryStock.ReorderQty, qryStock.Unit,
qryStock.ListPrice, qryStock.CostMultiplier, qryStock.SellMultiplier,
viewCalculatedStockOnHand.Ordered, viewCalculatedStockOnHand.Received,
viewCalculatedStockOnHand.Backordered,
viewCalculatedStockOnHand.Adjustments, viewCalculatedStockOnHand.[On Hand]
FROM qryStock INNER JOIN viewCalculatedStockOnHand ON qryStock.ID =
viewCalculatedStockOnHand.StockID;