Salesforce Flow – Implementing Multiple Scheduled Paths in a Flow

process-buildersalesforce-flow

The flow has multiple nodes and several scheduled paths, the original process looks like this:enter image description here

and this is how far I have come:

enter image description here

I am wondering how to link the paths without affecting actions that have only a one-time occurrence… and achieving the result that the process is serving.

Best Answer

I resolved this by using a decision node with multiple actions per decision instead, given that each action is unique. Each decision was then matched to its corresponding scheduled path.

The only downside is, that when some of the decisions fall between both paths I had to repeat those, ain't seen a better way around that yet. Perhaps in the future, as I gain more experience.

Related Topic