Hello Avinoor Singh,
Can you explain a bit more when this happens, does it happen when you hit a button, is it a save button or is it a button with a micro/nanoflow?
Are you trying to save other objects or did you save other object before you save the Items object.
Thank you
Just found this question because we were running into the same issue. We could solve it by removing all cookies/cache etc. in the browser for the Mendix application.
Hi,
I had the same issue. In my case, it was caused by java action 'commitInSeparateDatabaseTransaction'.
I was using this java action during generation PDF since commit action doesn't work in PDF document generation microflows.
If you are using the same java action, you should remove it.
I have the same issue with a marketplace module Filedropper, sometimes this error occurs when people drop files in the widget (before commit some things are done, so maybe there is a issue indeed on Mendix side). Now i changed this widget to the File Uploader widget from Mendix, so when it does not work I can contact support to fix this issue.
Hi,
This error is caused by autocommitted objects and inconsistent client state.
From your log:
Autocommitted objects still existed...OrderRequest.Items: 1 object(s)This clearly indicates that some objects are being created but not explicitly committed.
In Mendix:
→ Mendix will auto-commit it internally
This leads to:
You must explicitly commit all created objects.
Create Item Associate with OrderRequest Commit OrderRequest
Create Item Set attributes Commit Item Associate with OrderRequest Commit OrderRequest (if needed)