List view of any table shows Opened by as logged in username though the records are opened by othersIssue When we Navigate to List view of any table EX; sc_request.LIST , Opened by for all the records shows as logged in username instead of Actual opened by User Steps to Reproduce: Hop on the instance Navigate to TableName.LIST Check Opened By shows same as Loggedin User instead of Actual user for all the records Where as the actual opened by for above records are different as shown below CauseCheck for any Custom ACL using current.opened_by = gs.getUserID() <-- Assignment to current.opened_by, instead of current.opened_by = = gs.getUserID(). <-- Comparison to current.opened_by if ((current.opened_by = gs.getUserID()) || (current.requested_for = gs.getUserID())) { answer = true; } else { answer = false; } ResolutionChange it to below in order to avoid getting overridden by the name of logged In User. (current.opened_by == gs.getUserID()) || (current.requested_for == gs.getUserID()) Changing the "=" assignment operator to "==" comparison operator has fixed the issue