- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2020 08:52 AM
My goal is to get approval from 2 users on separate reference variables on the catalog item.
Can anyone tell me what's wrong with this workflow activity? When I run it, it always skips the approval.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2020 09:22 AM
12 line should be
answer.push(approver1);
13 line
answer.push(approver2);
Please mark my response as correct and helpful if it helped solved your question.
-Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2020 08:56 AM
make approver1= current.variables.source_delegate_owner.toString();
and same for approver2
Please mark my response as correct and helpful if it helped solved your question.
-Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2020 09:12 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2020 09:22 AM
12 line should be
answer.push(approver1);
13 line
answer.push(approver2);
Please mark my response as correct and helpful if it helped solved your question.
-Thanks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2020 09:16 AM
Hi Albert,
Since its already a variable you need to pass quotes('').
Use below,
answer.push(approver1);
answer.push(approver2);