G
Guest
All the tables are on the server's BE.
Each user has a copy of the FE.
I'm using the following queries to get a value (table 1) based on the
currect form's InventoryID
DoCmd.OpenQuery "InventoryResultEmptyTable"
To empty the results table -> table 1
DoCmd.OpenQuery "ReceivedInventory"
To get the quantity/location received and append to table 1
DoCmd.OpenQuery "ShippedInventory"
to get the quantity/location shipped and append to table 1
It works fine, but if two users run the queries at the same time, the result
is not correct.
Should I put table 1 with the FE of each user?
Thank you for your help!
Each user has a copy of the FE.
I'm using the following queries to get a value (table 1) based on the
currect form's InventoryID
DoCmd.OpenQuery "InventoryResultEmptyTable"
To empty the results table -> table 1
DoCmd.OpenQuery "ReceivedInventory"
To get the quantity/location received and append to table 1
DoCmd.OpenQuery "ShippedInventory"
to get the quantity/location shipped and append to table 1
It works fine, but if two users run the queries at the same time, the result
is not correct.
Should I put table 1 with the FE of each user?
Thank you for your help!