Selected microflow should have no parameters

0
Hi, guys. I made a microflow button and called a java action from it. I tried to give some parameters to the java action. As a result, I met the error messages. How to give form elements(parameters) to java action from a microflow button? I am a beginner.
asked
1 answers
2

Dean,

If you encounter the error selected microflow should have no parameters this means that the microflow that has been added to a button on a form has the setting set to pass nothing to the selected microflow and the selected microflow has 1 or more input parameters. If you want to pass parameters to a java action the simply fill the parameters of the java action call. For example the parameter that is passed to to microflow is the entity person and you want to pass it to the java parameter just select the parameter and fill the parameter with the value e.g. $Person (assuming the java parameter is an object)

answered