- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2024 11:30 PM
Hello All,
How to Pass value from 1 task activity to other task activity in workflow..
Can you share me an example
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2024 11:42 PM
Hello @David Cross ,
You can pass value from one activity to another with the help of scratchpad variable, below is the syntax-
Assign value to a variable in one activity :
workflow.scratchpad.variable_name="value";
Then in the other activity you can access the value using :
var value = workflow.scratchpad.variable_name;
If my answer solves your question then please mark it as Accepted ✔️ and Helpful 👍 based on the impact.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2024 11:42 PM
Hello @David Cross ,
You can pass value from one activity to another with the help of scratchpad variable, below is the syntax-
Assign value to a variable in one activity :
workflow.scratchpad.variable_name="value";
Then in the other activity you can access the value using :
var value = workflow.scratchpad.variable_name;
If my answer solves your question then please mark it as Accepted ✔️ and Helpful 👍 based on the impact.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2024 11:44 PM
Hi @David Cross
You can use workflow.scratchpad.variablename for passing
Thanks
dgarad