Closed MaheshkumarSundaram closed 1 year ago
Sorry for the overdue answer.
You need to save to output/signal from the user task to environment.output
. This can be done using extensions. If you are modeling your diagram with Camunda Modeler you can use onify/flow-extension as extension.
Hi,
How do I access variables of one task in the subsequent tasks?
For example,
BPMN XML
```I have a user task followed by two service tasks. User Task: "Get the testing parameters from user" Service Task 1: "Run a service using the parameters" Service Task 2: "Produce a PDF Report"
Say, I get two parameters namely
alpha_param
&gamma_param
from the user through an external form in User Task. How do I access those parameters in Service Tasks 1 & 2? Likewise, how do I access the output of Service Task 1 in 2?Any help would be appreciated. Thanks!