- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-02-2024 09:41 PM
There is a table called 'my meeting' and a field called 'Attendees' having field type 'list' and another field called 'meeting host' having field type 'reference' . Both refers to the user table so I want to show in the 'Meeting Host' reference field only those users who are present in 'attendees' list field.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-02-2024 11:57 PM
Hi,
On Meeting host field dictionary use the advanced reference qualifier like below:
javascript: "sys_idIN"+current.attendees.toString()
Use correct backend name of your field "Attendees" in above reference qualifier.
Thanks
Anil Lande
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-03-2024 01:07 AM - edited ‎01-03-2024 01:10 AM
Hi @Abhishek Kathe, the solution proposed by @Anil Lande should work. I have tested it by limiting the users based on Watchlist.
javascript:'sys_idIN'+current.watch_list.toString(); //Replace watch_list with your field name.
Regards,
Sunil

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-02-2024 11:57 PM
Hi,
On Meeting host field dictionary use the advanced reference qualifier like below:
javascript: "sys_idIN"+current.attendees.toString()
Use correct backend name of your field "Attendees" in above reference qualifier.
Thanks
Anil Lande
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-03-2024 12:29 AM
Hi,
I want to show the list of attendees in my meeting host reference field(I have to restrict users, only those users who are present in attendees)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-03-2024 12:42 AM
Did you try the solution proposed by me?
You have to use reference qualifier on Meeting Host field.
Thanks
Anil Lande
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-03-2024 12:44 AM - edited ‎01-03-2024 12:51 AM
It's not working and my application is global