Create an empty object and return it to use in a data view

0
I have an entity called Helper and a data view in home page, I want to create a microflow that creates an empty “Helper” object and returns it to use in the dataview .    What should I put on the microflow related to the dataview ?
asked
2 answers
1

Hey

You can create this as a data source microflow to the dataview in which you can first do a retrieve of this helper object, put a check if exists and if yes set it as the return value of the microflow, if it doesnt exist create an object and return the new object instead

Hope this helps!

If this is not what you want to achieve, please give more context 

answered
0

Hey

Retrieve activity for first helper object, then a decision activity to check if the retrieved object exists
If yes then end event and return this object
If false then create activity for the helper object and return that.

answered