- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2018 12:14 AM
i want to pass the scratchpad values from parent to child workflow using parallel flow launcher.
am setting some scratchpad values in parent workflow if i try to access that values in child workflow means am getting an error as "Undefined".
Thank you for any help.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2018 08:34 AM
Not sure if you've read this, but you need to define your inputs from your parent, to your child, and make sure to do a return value from the child to the parent:
https://docs.servicenow.com/bundle/jakarta-servicenow-platform/page/administer/workflow-activities/task/t_VariableWorkflowSubflow.html

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2018 03:12 AM
Hi
workflow.scratchpad.getData = "Welocome";
In Child Workflow:
var myname = workflow.scratchpad.getData;
Just make this change.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2018 08:34 AM
Not sure if you've read this, but you need to define your inputs from your parent, to your child, and make sure to do a return value from the child to the parent:
https://docs.servicenow.com/bundle/jakarta-servicenow-platform/page/administer/workflow-activities/task/t_VariableWorkflowSubflow.html