RE: GP 18.3 An error has occurred in the script on this page URL: https://mem.dfx.ms/me/mechache?
If the other options don't fix this script error, I'm curious if you're still on a version of Dynamics GP where we have the Intelligent Cloud Insights side of the GP home page still available?
In newer versions of GP, we have removed that side from GP completely, but a week or two ago we had a couple cases show up with this type of error message, seemingly due to a change on the D365/BC side that the Intelligent Cloud side connects to.
If that is the case, you can use this script to set all users to default to the regular GP Home page, not the Intelligent Cloud side, which can throw errors if the users don't actually have a D365 account to login with:
Update SY08100 set Visible = 0 where SectionID = 2 and DICTID = 0 and SEQNUMBR = 1
The SY08100 system table has a record for each user where the SectionID = 2 and Visible is set to 0 (for the GP Home page default) or 1 (for Intelligent Cloud Insights default).
We’d want the Section ID 2 records set with Visible = 0, if the users want the GP Home page to default, when they launch Dynamics GP.
If you want to test for just one user, you can use the above script with a Where USERID = ‘xxx’ clause added to it.
Thanks