How to solve Microsoft Dynamic NAV error message? - configuration

I am a student who needs to download Microsoft Dynamics NAV 2018 DEMO version. After downloading it, this error message kept popping up which causes the app to not open. How do I solve this? enter image description here

Related

SSRS Customized Error Page

I wish to achieve the customize the error page.
However for the detail error like parameter not valid, processing aborted error which in the dashboard frame.
Anyway to customize this error?
Thanks,
You cannot customise the errors that are returned. You can enable remote errors to display the error message to users that are viewing your report via the Report Manager, though this is generally not advisable.

Visual Studio Code (vscode) - Request textDocument/documentLink failed error on key press

Hi I'm running VSCode on my mac and Windows 10 machine. They've both started displaying the same symptoms after the latest update/rollback.
Every couple of keypresses I get the output box appear, with the "HTML Language Server" selected in the dropdown. The error displayed is:
[Error - 13:47:09] Request textDocument/documentLink failed.
Message: Request textDocument/documentLink failed with message: Path must be a string. Received undefined
Code: -32603
This gets repeated indefinetly and is making VSCode unusable. I'm editing some JSP / JSTL files so I'm wondering if it's some non-valid HTML setting it off, but this has never been an issue before.
All research I've found of this error seems to suggest a faulty extension, but I've currently not got any installed.
Help appreciated!
This is a known issue and, as per this Github issue, the workaround is to open Visual Studio Code on a folder instead of a file.
I too had this popping up this morning, google pointed me to vscode's extensions, so I went through the vscode extensions, updated them all and Debugger for Chrome (2.2.0) was the only one fitting the Error message.
Since I do not have the time right now to file an issue (and answer follow-ups) on https://github.com/Microsoft/vscode-chrome-debug/issues I have just disabled the extension for now.
One thing to note is, while vscode says it is version 2.2.2 in the extension panel, it is 2.2.0 on its marketplace page and github. Might be of some interest to dive in and find out where the extension panel picks up its - false - version number - and find out whether this has some impact on creating the error.

SSRS Chrome/IE Error

We are having issues loading our report server in both IE and Chrome; for some reason, it only works properly in Firefox.
When we try to load it in Chrome, we receive this error:
This webpage is not available
Hide details
The webpage at http://database/reports might be temporarily down or it may have moved permanently to a new web address.
Error code: ERR_INVALID_AUTH_CREDENTIALS
When we try to load it in IE, it circles through the authentication page three times and just dies.
Thanks to anyone with any insight!
It appears that SSO is failing and you might need to register an SPN for your SSRS server:
https://msdn.microsoft.com/en-us/library/cc281382.aspx

The URL from web service of Report Service manager returns a blank page (no error specified)

I really need your help.
I installed sql server 2008 R2 Enterprise Edition and try to open the Web Service Url / Report manager URL but when it appears on the browser, it only gives me a blank page like this image below:
http://postimg.org/image/6mu71jrsl/
Nothing appears, not even an error. The title of the tab also doesn't change into Home- Report Manager.
It's very confusing since I installed them in default.
If there is an error, I still can troubleshoot it and resolve it. But now, I only get blank page with no error. Please...., can anyone help me? or has anyone resolved this same issue before? Thanks before!

MS-Access 2007 Runtime SendObject Crash

I have programmed an Access Database program using Access 2007. I have a button that points to the event: DoCmd.SendObject acSendReport to have it email a PDF report (acFormatPDF). Everything works fine in the normal Access 2007 program, but when a user opens the program with Access 2007 Runtime, when clicking on this button it goes through the normal steps (notifying Outlook, waiting for Allow/Deny clearance), and then after you click Allow, the program crashes with a Runtime Error.
Does anybody know what is going on here? Is this a normal error with Access Runtime? I have tried other file formats (RTF and XLS) instead of PDF, but it seems to be the SendObject command that is crashing the Runtime Environment?
Clarification: Access Runtime does not output an error code upon this crash. Just a window stating a "runtime error has occurred".
It seems that the runtime license doesn't not cover the PDF converter. However, this article:
http://blogs.msdn.com/access/archive/2007/08/23/pdf-xps-now-supported-in-access-runtime.aspx
purportedly explains how to chain the PDF converter installer with your runtime installer so that it will be part of the runtime installation. Unfortunately, subsequent discussion on that page shows that PDF output didn't actually work with the runtime. The SP2 for the runtine purportedly also fixes the problem:
http://blogs.msdn.com/access/archive/2009/04/29/access-2007-and-runtime-sp2-now-available.aspx
but some commenters there report nonspecific PDF issues. So you might want to check if you've got SP2 of the runtime and see if you can then use the PDF converter.
Sorry not to be of more help here, but it really does look like you're encountering a widely-experienced problem.
I have discovered another issue that I had in the code. On top of the PDF issue answered by Mr. Fenton, I had an issue with the multiple email addresses in the code. I had listed multiple email addresses in the CC portion of the code. If I just list 1 email address, it works.
So now I just have to figure out how to send the email to multiple address and all should be well.