Optional Parameter in microflow.

0
Hello Everyone, I need to know how to add optional parameter in microflow. i.e: if i select an object in parameter then my microflow work for selected object only but if dont select any object then it will retrieve list from database and work in it. i have completed my microflow like this but dont know how to set parameter as optional. please help me. Thanks in Advance. 
asked
1 answers
3

Hi Hamroush

I’ve had to do something similar to this before. There’s no way to make a parameter implicitly optional. In the microflow that accepts the parameter, you should have an IF split, to check if that parameter is empty, then work accordingly. So if parameter=empty, retrieve from database and work from list, if parameter!= empty, work on that object/list that was passed through :)

answered