A family of Microsoft relational database management systems designed for ease of use.
While Scott and Imb_HB are right about the potential problem with an accdb, this particular error is most often associated with SQL Server linked tables, which is your situation.
The problem often results from attempting to update a record in VBA while it is simultaneously being edited in a bound form, or similar situations.
The solution often involves adding a Rowversion (formerly called Timestamp) field to the table(s) in the SQL Server database.
https://learn.microsoft.com/en-us/sql/t-sql/data-types/rowversion-transact-sql?view=sql-server-ver16
You can also read more about using the Timestamp field in Access,
Here's a rather old discussion of this, which is still relevant, by Armen Stein. You can find a link to an excellent discussion of using SQL Server with Access in that post as well..