Categories
Dynamics NAV Microsoft

The email address “” is not valid.

A Job Queue Entry running the Codeunit 1509 Notification Entry Dispatcher fails with the following error message:

The email address “” is not valid.

Cause:
The User ID that runs the Job Queue Entry does not exist in the User Setup or it has blank email address.

Solution:
Verify that the User ID that runs the Job Queue Entry exists in the User Setup table, if not create it, then populate the E-Mail field.

Did my solution solve your problem? Leave a reply.

Categories
Dynamics NAV Microsoft SQL Server

There are some objects locked in the database. You must unlock these objects before upgrading the database

—————————
Microsoft Dynamics NAV Development Environment
—————————
There are some objects locked in the database. You must unlock these objects before upgrading the database.
—————————
OK
—————————

Solution:
Execute the following SQL Query, remind to USE your database name (replace NAVDatabase)

USE [NAVDatabase]

UPDATE [Object] SET [Locked] = 0, [Locked By] = '' WHERE [Locked] = 1

then close the query window (otherwise the connection will still remain active).

Did my solution solve your problem? Leave a reply.