Resolving My Settings Page Implementation After a Database Conversion
When you convert a Microsoft Dynamics NAV 2016 database, the My Settings page in the Microsoft Dynamics NAV Web client will not work properly. This article explains how to resolve the problem.
Modify Codeunit 1 Application Management:
In the C/AL code, add a global function that has the following properties:
Property Value Name OpenSettings ID 65 Local No Add the following code to the OpenSettings function:
PAGE.RUN(PAGE::"My Settings");
Modify page 9176 My Settings:
In C/AL code, replace the code on the local function GetTimeZone with the following code.
TimeZone.SETRANGE(ID,TimeZoneID); IF TimeZone.FINDFIRST THEN EXIT(TimeZone."Display Name");
See Also