
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2025 02:47 PM - edited 03-12-2025 02:48 PM
Hi,
I created flow variable so I can use it to display user name in the description field. However I am getting nothing.
This is how i set it up:
this is the result (I am getting the email but not the name):
thanks!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2025 06:26 AM
I could see it doesn't work
Use Lookup Record on sys_user within your for each with condition as
SysId == For Each->MRVS->User
Then use output from Lookup Record and dot walk to Name field in next step
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2025 05:29 AM - edited 03-13-2025 05:56 AM
I created multirow variable that contain user name and email and name.
user name is a reference field
email is a string field
name is a string field
this works perfect, however it display on the portal same name twice (see below)
So I thought to remove name field from the variable set and try to get the description to display name and email via the flow but i have no luck. By the way hiding the name variable didn't work as it still showing on the display list
thanks!
P.S. its a service catalog task
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2025 05:57 AM
User name is reference to sys_user so it will always show data from name field
Reason is because on sys_user name field is Display=true
It's platform behavior.
So please don't use name variable within MRVS
Even if you hide it will still show for the older RITMs, after hiding if you submit fresh RITM it will be hidden
You can use For Each on MRVS and then dot walk the Reference variable and then get Name from it
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2025 06:12 AM - edited 03-13-2025 06:12 AM
This is the option I have, selected user and got the same result, display user sys id
no option to dot walk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2025 06:15 AM
As per your image User variable is string, keep it Reference only
Inactivate Name variable within MRVS
Then you should be able to dot walk
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2025 06:26 AM
I could see it doesn't work
Use Lookup Record on sys_user within your for each with condition as
SysId == For Each->MRVS->User
Then use output from Lookup Record and dot walk to Name field in next step
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader