Hi, which language uses application server by default? Is it possible select language for NAS?
Language is determined by the regional settings of the windows account specified in the service “Log On” tab.
Yes - copy language folders from the client folder to the nas folder and you can set the language with GLOBALLANGUAGE if you want another than default from the regional settings as Preben write.
Some additional information: If you change the language with GLOBALLANGUAGE and there isn’t a valid STX / ETX file in the NAS Folder, Navision says that the GLOBALLANGUAGE is the given one but internally it uses the default one. So maybe you should check before if there is a valid STX / ETX File and the language change will be successfull. I use this Code in the NAS Handler Trigger: (lrc_EDISetup.“NAS Language Code” = 1031 for Germany) lbn_LanguageOK := TRUE; IF lrc_EDISetup.GET() THEN BEGIN lbn_LanguageOK := FALSE; IF lrc_WindowsLanguage.GET(lrc_EDISetup."NAS Language Code") THEN BEGIN IF (lrc_WindowsLanguage."STX File Exist") AND (lrc_WindowsLanguage."ETX File Exist") THEN BEGIN GLOBALLANGUAGE(lrc_WindowsLanguage."Language ID"); lbn_LanguageOK := TRUE; END ELSE MESSAGE(INF_NO_STX_ETX_FOUND, lrc_WindowsLanguage."Language ID", lrc_WindowsLanguage."Abbreviated Name") END ELSE MESSAGE(INF_CODE_NOT_FOUND, lrc_EDISetup."NAS Language Code"); END; IF lbn_LanguageOK THEN IF lrc_WindowsLanguage.GET(GLOBALLANGUAGE) THEN MESSAGE(INF_LANGUAGE, GLOBALLANGUAGE, lrc_WindowsLanguage."Abbreviated Name");