How to create a Microflow to add Data into a list?

0
How do I go about creating a Microflow in Mendix version 10.0.0 specifically designed to add data to a list?
asked
1 answers
0

Hey Gülistan!

 

I'm gonna tell you the steps to achieve that.

First of all to create a microflow. On the explorer, right click> add microflow

image.png

After add if you want to add a element to a list you should receive that element and the list as paremeter. For sure, the list can be obtained from a retrieve but I'm gonna show an example with two paremeters.

You should define the parameters as list and object:

image.png

 

There you select the entity of the paremeter and later on you will be able to add the element to the list like this:

image.png

 

Using the change list activity from the microflow toolbox you are able to add a new element.

image.png

 

Hope this helps you.

 

answered