Calculated user Name (Last name + First name) does NOT apply on the ListDescriptionIssue Description:Calculated user name in the format of Last name + First name) does not work on reference field in list viewSteps to Reproduce 1. Go to dictionary entry for the "Name" field for sys_user table (/sys_dictionary.do?sys_id=5c4adb224f33320063169d9f0310c7f8%26sysparm_view=advanced)2. In the calculated value section, changed line 14 of the script from "current.first_name + ' ' + current.last_name;" to "current.last_name + ' ' + current.first_name;" and save the changes3. Go to sys_user table and confirm in the "Name" field, the values are now in the format "Last name" + "First name", e.g Tuter Abel4. Go to incident list view and noticed the "Caller" field (which is a reference to name field in sys_user table) is still in the format "First name" + "Last name"Expected behavior: Reference field in list view should honor the output of the calculated value scriptActual behavior: Reference field in list view does not honor the output of the calculated value scriptNote: I have tested these steps in OOB JP9a, KP8 and LP1 and all have the same issue where the values are displayed in the wrong format in list view, not honoring the formatting set from the calculated value scriptWorkaroundThis is working as expected. The platform optimizes list loading by not recalculating calculated fields on every load it loads whatever stored in DB. After changing calculation we need to update the record so that recalculated value is stored in DB. But in the case of forms, it works fine, as every form load recalculation happens. This is working as per design.Related Problem: PRB1304917