why the Selected checkbox is getting reset to false even though youve configured an OnChange microflow on it

0
kkk   Here, I am calling above microflow on change event for associate the values 
asked
1 answers
1

Hi Chandani Giram,

 

You are using a microflow as the data source for your list view, and in the on-change microflow, you're updating and refreshing the OperationMaster object. When the object is refreshed, the data source microflow runs again and reloads the list.

To fix this you can do either:

  1. Remove the refresh action from the on-change microflow or

  2. Commit the checkbox value in the on-change microflow. This will work as long as the data source microflow is only fetching existing objects and not creating new ones each time.

Hope this helps!

Thanks

answered