- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-01-2020 03:32 AM
Hi,
Is it possible to show the Name of the sys_updated_by field user in a report?
Thank you,
Dan
Solved! Go to Solution.
- Labels:
-
Reporting
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-01-2020 08:33 AM
You can create a database view to join the desired table and sys_user on user name. Be sure to use a left join since some records may be created (and updated) but a non-system user if the record came OOTB.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-01-2020 05:19 AM
Hi,
If you select the "Updated by" field, that will show you their name.
For example:
Please mark reply as Helpful/Correct, if applicable. Thanks!
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-01-2020 05:24 AM
Hi,
I thought at first you said opened_by, but you're talking about the updated_by.
Unfortunately, that shows you just their userid, there isn't a way outside of using the sys_user table to show their name. You aren't able to dot-walk to that field as it's not a reference field and merely a string.
You could consider creating a reference field that the updated by can use as well, but out of box, there isn't anything that would show you the name.
Please mark reply as Helpful/Correct, if applicable. Thanks!
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-01-2020 05:46 AM
Hi,
The field 'sys_updated_by' is not a reference to the client table, and don't contain a sys_id.
It's a simple string, probably for performance reason. But it's a very low level field for the platform. If you modify its behavior, you may suffer from unexpected side-effects later on.
You can write below code in default value tab of that field:
javascript:gs.getUser().getDisplayName();

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-01-2020 07:29 AM
Hello,
Thank you for visiting the link I provided above and then quoting from Shiva's post within that thread that says:
"The field 'sys_updated_by' not a reference to the client table, and don't contain a sys_id. It's a simple string, probably for performance reason. But it's a very low level field for the platform. If you modify its behavior, you may suffer from unexpected side-effects later on."
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!