how to create an object from a list of objects?

0
I want to create a "MesDeComida" from a list of "Evento_Comida" that I already have created     this is my page for creating "Evento_Comida". Its works well. The button CREAR MES creates the entity 'MesDeComida'
asked
2 answers
1

Pass the correct Evento_Comida to the microflow and create the MesDeComida object and set the association directly to the Evento_Comida that you passed as parameter. Do not forget to commit.

 

Regards,

Ronald

answered
0

Good morning Ronald, by doing that, it creates the object with only one 'Evento_Comida.' I want to create an object called 'MesDeComida' with all the 'Evento_Comida' that exists.

 rerrrrr_2.png

the microflow

yy.png

answered