How do I apply a default number format to the whole system and not just to one user?

Hello community,

I want that when applying a certain number format, this is applied for all users and not only for the current user.

 

Like 0

Like

2 comments

Greetings,

You can change the default number format for all users on the site by running the script with the following parameters:

Update "SysAdminUnit" Set "NumberFormatId" = 'c15aef42-cc66-4daa-968c-90a12ecb797f' where "SysAdminUnitTypeValue" =  4
The SysAdminUnit table stores information about users.

The NumberFormatId column defines which number format is applied to each user. You can replace the ID with another value, depending on the format you want to apply.

By setting "SysAdminUnitTypeValue" = 4, you apply this value to all internal users.

Additionally, we have already submitted a request to our R&D team to make this functionality more easily configurable directly from the UI in future system versions.

Have a nice day!

Daria Mudragel,

Thanks, but is there a way to ensure that this number format is also automatically applied to NEW users that will be created in the future?

The script you provided works perfectly for existing users, but I'm wondering if there's a way to set this as a system-wide default so that any new user account automatically inherits this number format without having to run the script again.

Show all comments