Undo Save?

0
Hi – I know a rollback undoes uncommitted changes. What about undoing committed changes? The use case is something like this: User enters something on a record User saves the change User wants to Undo to undo the entry that was saved and basically revert the record back to what it was before the commit   Microsoft Excel allows this but not sure if Mendix can …? I’ve researched and haven’t found a way yet.
asked
1 answers
0

There is no built-in platform function that does what you want but you can create that function by keeping track of the changes in a separate entity ‘change’ having attributes ‘module’, ’entity' and associated to an entity having ‘attribute', ‘old value’, ‘new value’ and a microflow doing the Undo-logic.

answered