- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-10-2017 09:23 PM
The scratchpad in workflow is a space in the workflow context to store and share string based variables (as name:value pairs) between instances of activities within an executing instance of a workflow.
As Per the definition..i don't know how i can move the variable from one activity to another activity..
i want move the values from runscript activity to other activities
workflow.scratchpad.a="shabbir";
workflow.scratchpad.b="shabbu";
how can i do this???
Solved! Go to Solution.
- Labels:
-
Incident Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-10-2017 09:29 PM
Workflow scratchpad will be available in a workflow across all the activities. You can use the same syntax to access the value
workflow.scratchpad.a

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-10-2017 09:29 PM
Workflow scratchpad will be available in a workflow across all the activities. You can use the same syntax to access the value
workflow.scratchpad.a
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-10-2017 09:31 PM
Hi Shabbir,
Scratchpad variables are global within an instance of a workflow. It can be accessible in any of the activities. If you have set it workflow.scratchpad.a="shabbir";
in runscript, you can easily use the variable to compare in any of the activities.
Regards,
Souren
Please hit like/helpful/correct based on impact.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-10-2017 09:32 PM
With the same name "workflow.scratchpad.a" in other activities.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-10-2017 09:35 PM
Hi Shabbir,
You are storing data in scratchpad variable. You can call workflow scratchpad in any activity.
For Example:
I have variable in one activity like first_name = workflow.scratchpad.a;
last_name = workflow.scratchpad.b;
if this is helpful pls like as correct answer.