
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā07-12-2018 04:06 AM
I have a catalog item that has a variable (select box) that contains a list of names. In addition, I have an email notification baked inside of the workflow. What I am trying to do is send the email notification to person that is selected in that select box. Is this something that can be accomplished?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā07-12-2018 04:24 AM
Hi
Can try this
answer = [];
answer.push(current.variable.variable_name);
Regards
Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā07-12-2018 04:18 AM
You can try something like this :
Glide your sys_user table > pass "select box user" in addQuery and get the email ID then
email.addAddress("cc", emailID_Variable, name_Variable)
Thanks,
Anup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā07-12-2018 04:23 AM
try below code:
answer = [];
var arrAppr = current.variables.u_approver.split(",");
for (var i = 0; i < arrAppr.length: i++) {
answer.push.(arrAppr[i].toString());
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā07-12-2018 04:24 AM
Hi
Can try this
answer = [];
answer.push(current.variable.variable_name);
Regards
Guru

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā07-12-2018 06:58 AM
This didn't work. Thank you for replying.