SCSM Date to UK Format
Dear All,
How do i change SCSM date to UK format for system wide change?
Thanks
Daniel
Best Answer
-
Shane_White Cireson Support Super IT Monkey ✭✭✭✭✭
To clear User Preferences and set a default language:
LanguageCodeDateTime is only set to ENG (If this is the only format you want to set)
If you want to have US english, make sure the order is ENG,ENU so that ENG comes first..
Then in SQL you need to run this query against the ServiceManagement DB to clear the user preferences:
TRUNCATE TABLE dbo.UserPreferences
Thanks,
Shane
5
Answers
Hi @CaterhamITSupport
To clear User Preferences and set a default language:
LanguageCodeDateTime is only set to ENG (If this is the only format you want to set)
If you want to have US english, make sure the order is ENG,ENU so that ENG comes first..
Then in SQL you need to run this query against the ServiceManagement DB to clear the user preferences:
TRUNCATE TABLE dbo.UserPreferences
Thanks,
Shane
This fixed my issue.
Thank you.
Daniel