- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2025 09:43 AM
Hi
I have requirement to send approval catalog variables
i have two variables
business owner and technical owner
i want send the approval to business owner and technical owner
how i write the script in workflow
first i try send the approval with below script but it won't work
Please any one help on this
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2025 09:46 AM
If these are reference variables, you can use something like this:
answer = [];
answer.push(current.variables.business_owner.toString());
answer.push(current.variables.tech_owner.toString());
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2025 09:46 AM
If these are reference variables, you can use something like this:
answer = [];
answer.push(current.variables.business_owner.toString());
answer.push(current.variables.tech_owner.toString());
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2025 09:52 AM