Refresh in client and cancel button

0
Hi all, i have a problem solving the following scenario: I click a button on a page, that triggers a microflow which changes an object with refresh in client (object is removed and therefore not shown on the page anymore), and then click the cancel-button (so without committing the object). When I open the page again, the object should be shown again, but isn’t because of the ‘refresh in client’-action before. When I load the app again, it is shown, so it was saved to the database. Any idea on how to resolve this issue?
asked
2 answers
1

Apparently you did commit the object somewhere in your microflow. A cancel is a rollback, back to the latest commit state .

Which means, a new not yet object will be removed  and once an object has been committed a rollback will “reset” values based on state of last commit

answered
0

Hi Zenner,

Make sure your object is not commit anywhere with associate objects.

answered