Microsoft Dynamics NAV Classic
You cannot change the transaction type after you start the transaction.
A transaction starts when the program executes the first database operation, such as FIND, NEXT, INSERT, DELETE, MODIFY, SUM, and COUNT.
The error occurred because you were trying to change the transaction type from UpdateNoLocks to Update.
OK
0
Comments
I suppose your question is: What causes this error?
It means you are in a transaction with a certain transaction type. And you want to change the transaction type.
Probably in your code is some "CURRENTTRANSACTIONTYPE"-command to change it.
Or maybe you are in a transaction and run a report that has property "TransactionType" set to a different value.
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!
I got the error on a report that is utilized for processing. The transaction type of the report was set to update. I then changed the transaction type to UpdateNoLocks, and the issue were resolved.
Thank you once again.