Good afternoon (Rotterdam). I have Processes consisting of ProcessSteps. Using a microflow I would like to insert a record in another table for every ProcessStep. Can't figure out how to do that. Start: retrieve Process-ProcessStep start with the first ProcessStep Create: create a new record in the new table select the next ProcessStep if any, go to Create Ready: What activities I have to use?
asked
Gerard Veurink
1 answers
1
Gerard,
Maybe something like this would work:
Get Process Object (either as a Parameter to the microflow or by a Retrieve action)
Retrieve Process Step Objects by association
Loop over the Process steps and execute a Create action for each one to create the objects you want.