Create microflow with input as datasource

0
Hi everyone, I am trying to define a microflow with an input String, and use it as a data source of a data grid. when I try to this I have one error in the micro flow settings of the data grid and  title is : "No applicable value available"   Can I pass null or empty to the microflow or make the input optional?
asked
2 answers
1

You could create another microflow as wrapper. A microflow without an input parameter. Use this new microflow as datasource microflow and call the other one as submicroflow. Then you can pass the value you want to have as default.

answered
-2

If you want to pass data to a datasource microflow, you need to put the respective widget in the context of another DataView (or other data widget). Then the microflow can have an Object of that specific entity as an input.

You cannot have primitive types (String, Number) as an input to a datasource microflow, but you could have an entity with a string attribute as input.

What exactly are you trying to achieve?

regards, Fabian

answered