Dynamic Mapping... sort of
Question, I have a map that is referred to in a workflow, that runs automatically. I want to be able to adjust that map easily, possibly using forms rather than it being coded into the workflow, how can I do this and have the updated map saved for use by the workflow?
In short how do I update the default value in a map that runs automatically?
Thanks
joshbailey
Posted 4 years ago · Edited 1 year ago·Last reply 4 years ago
2 comments
arthurburkhardt
·4 years ago · EditedWhen you apply
Flowable sets it as a global variable. You can then reference
myMapin your code, in whatever step of the workflow. To update its value, just runexecution.setVariable("myMap", myMap)again.joshbailey
OP4 years ago · Edited@arthur.burkhardt Thank you Sir! That is very much appreciated