How to pass value from one activity to another activity?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-02-2020 09:29 AM
6 REPLIES 6
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-02-2020 09:36 AM
Hi,
You can use the workflow.scratchpad.variablename to pass value from one activity to another in workflow.
Go through below link for details.
Regards
Nikhil

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-02-2020 11:51 AM
Hi,
As others already suggested, you have to use workflow.scratchpad
workflow.scratchpad.var_name="value";
Then in the other activity you can access the value
var val = workflow.scratchpad.var_name;
Kindly mark the comment as a correct answer and helpful if this answers your question.