- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2022 08:42 AM
I have a table that contains a List field with multiple values
How do I get those values from that field using script include
Solved! Go to Solution.
- Labels:
-
Service Portal Development

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2022 08:48 AM
Hi,
Instead of getDisplayValue() use IncludeList.push(member.u_member.toString());
Also it would be helpful if you can share some background and information about which table store what.
Thanks,
Anil Lnade
Thanks
Anil Lande

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2022 08:59 AM
If you are getting it as true then comment that line or use
gs.log(member.hasNext(),'t or f');
using member.next() in log was skipping the record in while loop and you get nothing when only one record is there is that table for matching condition.
Tahnks,
Anil Lande
Thanks
Anil Lande

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2022 09:00 AM
Sorry to say but I cannot imagine beyond this. It would be helpful if you share more information about your table and what you want.
Please explain what you want with an example.
Thanks,
Anil Lande
Thanks
Anil Lande
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2022 09:08 AM
Actually, I have a catalog variable that refers to a table field value(Email).
2. Depending on that email I want to get the corresponding member related to that email
3. want to set those members in a list collector variable.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2022 09:17 AM
Hi,
Please update the line like below, no need to use getDiaplyValue();
IncludeList.push(member.u_member.toString());
I hope you are getting the email id in first log.
Thanks,
Anil Lande
Thanks
Anil Lande
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2022 09:19 AM
used IncludeList.push(member.u_member.toString()) but same showing..
yes getting email as a string