How to convert sysid to name on dl member field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2024 09:07 PM
Hi Team, Good morning,
For this, I have created script include and client script.
when we select list modify field as assignment group and member is auto populate but I am facing the issue like 1st orLast user is showing as sysid.
Team please help me
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2024 10:22 PM - edited 06-06-2024 10:38 PM
Hi,
Have you used:
1. gr.getDisplayValue('field_name'); OR
2. gr.field_name.getDisplayValue(); OR
3. user = field_name.getDisplayValue();
Or
Go to the script include and change the line:
list.push(grm.getValue('sys_id'));
to
list.push(grm.getValue('grp_member')); // if used array or list then add comma seperated values.
If it is not work then please elaborate your issue.
If my answer helps you please mark as accepted/helpful by adding thumb in bottom of my post.
Thank You!!
Thank you!!
Dnyaneshwaree Satpute
Tera Guru

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2024 10:26 PM
Not sure how you are populating that list field. But that field needs to set to list of sysids separated by commas.
Ex. current.dl_members = 'sysid1,sysid2,sysid3';
Please mark this response as correct or helpful if it assisted you with your question.