Hi @LAR1985,
This error usually happens when a workflow is running a query that takes a long time, and the database can’t keep up with all the changes happening at the same time. Because of that, some data it needs gets cleaned up too soon.
Since it only happens sometimes and works when you try again, it’s likely due to the database being busy or having limited space for temporary data.
A few things that can help:
Ask your DBA to give more space for undo data and keep it longer.
Try running big workflows during quieter times.
Break big workflows into smaller parts if you can.
Look at how complex your queries are and try to simplify them.
Hope that helps! Feel free to ask if you want tips on checking your workflows.
Thanks,