web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :
Small and medium business | Business Central, N...
Suggested answer

Region and Language settings

(2) ShareShare
ReportReport
Posted on by 60
 
Is there a way to change Company, Time Zone, Region, and Language settings for all users in one go without doing the manual way of My Setting option in Business Central.
 
 
 
I have the same question (0)
  • Suggested answer
    Sami Ullah Profile Picture
    315 Moderator on at
    Region and Language settings
    Hi,

    In Business Central, you can't directly change settings like Company, Time Zone, Region, and Language for all users at once through the UI. Each user has to do it manually through the "My Settings" option. However, you can handle this programmatically.

    Example:
        var
            UserPersonalization: Record "User Personalization";
            Users: Record "User";
        begin
    
            if Users.FindSet() then
                repeat
                    if UserPersonalization.Get(Users."User Security ID") then begin
                        UserPersonalization."Company" := 'My Company';
                        UserPersonalization."Locale ID" := 16393;
                        UserPersonalization."Language ID" := 16393;
                        UserPersonalization."Time Zone" := 'Pakistan Standard Time';
                        UserPersonalization.Modify();
                    end else begin
                        UserPersonalization.Init();
                        UserPersonalization."User SID" := Users."User Security ID";
                        UserPersonalization."Company" := 'My Company';
                        UserPersonalization."Locale ID" := 16393;
                        UserPersonalization."Language ID" := 16393;
                        UserPersonalization."Time Zone" := 'Pakistan Standard Time';
                        UserPersonalization.Insert();
                    end;
                until Users.Next() = 0;
        end;

     
  • Suggested answer
    YUN ZHU Profile Picture
    92,656 Super User 2025 Season 2 on at
    Region and Language settings
    Hi, if you don't want to customize it, you can modify My Settings for all users in User Settings.
    If you want to customize it, please refer to the following steps.
    Dynamics 365 Business Central: How to bulk edit user roles/profiles (Customization)
     
    Thanks.
    ZHU

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

Abhilash Warrier – Community Spotlight

We are honored to recognize Abhilash Warrier as our Community Spotlight honoree for…

Leaderboard > Small and medium business | Business Central, NAV, RMS

#1
Rishabh Kanaskar Profile Picture

Rishabh Kanaskar 4,232

#2
Nimsara Jayathilaka. Profile Picture

Nimsara Jayathilaka. 2,863

#3
Sumit Singh Profile Picture

Sumit Singh 2,819

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans