- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2023 04:01 AM
Hello, i have a reference field where i only want 1 coloumn to show up thats "budget unit"
How do i go about doing this?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2023 04:23 AM
Hi @asd22
Can you explain in detail of your requirement?
You want to show only 1 column when refernce icon is clicked?
You can click on Refernce icon and configure list layout to show the fields that are required.
Mark it helpful if this helps you to understand. Accept solution if this give you the answer you're looking for
Kind Regards,
Rohila V
2022-25 ServiceNow Community MVP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2023 01:32 PM
@Voona Rohila Hi, i am looking for similar solution on Portal view but i am looking to show members of the group using reference field. its showing Created and then User i want User to be only shown to select
can you help on this ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2023 11:21 PM
Hi @Ram050670
There is no displayvalue set on Group member table so created will be displayed by default when referencing.
To show Group members, Instead of referring the table to 'Group Member' Table, Refer to user table with advanced reference qualifier
Refer below link
https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0831564
Mark it helpful if this helps you to understand. Accept solution if this give you the answer you're looking for
Kind Regards,
Rohila V
2022-25 ServiceNow Community MVP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2023 09:47 AM - edited 09-25-2023 10:04 AM
@Voona Rohila Thanks for the updates, it was very Helpful link, worked!! i used the below link with sys_user table.
javascript:'active=true^sys_idIN'+getIDs("2d6649bbdbb356004ff5f4331f961924"); function getIDs(grp){var m=GlideUserGroup.getMembers(grp);var ids=''; while (m.next()){ids+= (m.user+',');} return ids;}