I have a process thats handling some tasks. It contains a id that i would need for later processes. I am storing the the id in a queue solution in orchestrator. But i want to make my processes more independent. So wonder if its possible to pass that ID as an argument to my queue process so it know what to look for ?
Yes kind of.
what i am doing today its that i have 4 processes combined into 1 robot
Checks invoices and creates case
Updates queue table in orchestrator ( to check if its completed the create case )
Updates the case when it has the missing information ( gets this from mail, very various of when)
Approves the case
The process 2 needs some arguments from process 1 to know what to look for, same goes for the other robots. they need data across eachother. So instead of having millions of invoke workflows inside each process is it possible to just pass the arguments from example process1 to process 2? (that i make the trigger happend in process 1 so when it open process2 or when it runs it has the data it needs ?