When viewing a ticket in ServiceDesk, it is noted that some or all time stamps in the History appear from the wrong time zone.
The AD Server in ServiceDesk was not configured to use the correct time zone. This may have been caused also by specific user time zones being manually set incorrectly.
This is a cosmetic issue that only affects viewing data from the specific browser of a user.
Verify that the AD Server in ServiceDesk is using the correct time zone. If not, users that are synced from Active Directory will have their time zones set incorrectly, resulting in the time stamp issue.
Update the AD Server
Update the users
SQL workaround
The User table in SQL can be modified to bulk change users if all or many are affected by this issue. The following example SQL script can perform such a change. Warning: It is strongly recommended to back up the SQL Server Ensemble database before making any changes to it.
-- It will need to be determined what time zone is to be searched for, and what time zone is to be used. The exact text must be provided.
USE Ensemble
UPDATE [User]
SET SelectTimeZone = 'Pacific Standard Time'
WHERE SelectTimeZone = 'Eastern Standard Time'
SELECT SelectTimeZone FROM [User]
Workflow note
This can impact the Workflow product as well as ServiceDesk