Object event, after commit, sum to not be 0 after reopening the app

0
With an object event, after commit, I have a sum from a microflow, but whenever I retest the app, the figure resets unless I create more data (figure sums on that data only). Is there a way to make it not reset?
asked
1 answers
1

Hi Yusuf,

In the after commit, do you change the object itself? In that case you have to commit the object again (without events, to avoid a infinite loop). If you change the object without commiting it, the attribute is only stored in memory but never sent to the database.

In this case you might want to use a before commit microflow if possible, so you don't have to use two commits.

If you change another object, make sure you commit this change as well.

Hope this helps!

answered