Microflow loop running continuous not ending when loop end

0
I am trying to set my boolean attribute true before my page open , and associate my iterator object into my main object , but when loop end it is again going to retrieve activity 
asked
1 answers
1

okay, here the problem is not with the loop. 

the Microflow is a DS microflow for a dataview which is inside a List View. In this entire flow some where this Product_Initailze object is being refreshed.

Whenever the context is being refreshed, the page reloads again which will make your DS microflow invokes again and so on.

 

So please remove the unnecessary refresh activity in your flow then the issue will be solved.

 

Instead of calling this microflow on the page as DS. Call this microflow on the first activity and then have a Show Page activity, so that your microflow will not be triggered again and again.

answered