
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2018 06:07 AM
Dear All,
I am trying to push a group approval via scratchpad variable from Workflow.
Here is the snippet :
gs.log('Groupp ID is : '+workflow.scratchpad.chkGroup); //contains sys_id of required group
var answer = workflow.scratchpad.chkGroup;
The above snippet is in *Approval - Group* activity of Workflow.
However, approval is not being pushed in the system.
Can anyone please suggest ?
Best Regards,
Puru
Solved! Go to Solution.
- Labels:
-
Scripting and Coding

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2018 06:11 AM
Try this:
var answer = [];
answer.push(workflow.scratchpad.chkGroup);
Please, mark my answer correct and helpful if it helped you.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2018 06:11 AM
Try this:
var answer = [];
answer.push(workflow.scratchpad.chkGroup);
Please, mark my answer correct and helpful if it helped you.