In this example you need to modify the dashboard to start in a specific company and to use the following settings : - Country: France- Time zone: Paris- Language: French To do that follow these instructions : 1. Click the Gear icon in the top right corner of the page.2. Select User Options from the … Continue reading AX – D365FO – Modify User Language and Country/Region settings
Category: User interface Language
AX – D365FO – Get User, Company and System Language via X++ in AX 2012
static void Languages(Args _args) { // company language info(CompanyInfo::languageId()); // user language info(new xInfo().language()); // system language info(SystemParameters::getSystemLanguageId()); } This infolog shows the result of the small job from above.