How to send notification to users in a variable?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-22-2015 05:37 AM
Hi All,
Can anyone please let me know how to send the notification to the users in variable?
Let's share my scenario
I have one variable 'x' on a variable form ,x contains 10 user id's. Now I need to send a notification to the 10 members who are there in 'x'.
Can anyone please suggest.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-10-2016 07:51 PM
Hi Kalyan,
Did you manage to fix this? I am attempting the same thing with sc variables and there seems to be no answers in the community.
Thanks,
Jimmy

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-10-2016 08:24 PM
If you can tell me your use case, I can help you out

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-10-2016 08:23 PM
Is your list collector variable on sys_user table? Then try this
answer = [];
var userArr=current.variables.<list collector variable name>.toString().split(',');
for (var i = 0; i < userArr.length; i++) {
answer.push(userArr[i].toString());
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-10-2016 08:48 PM
Yes it is on the user table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-10-2016 08:52 PM
It's a Reference variable, not a list collector.