Hello I ran into this problem with a client and wanted to put it here for others who might run into this.
I didn't find anywhere any information on this.
This issue is related to an addon that had code as follows
Message('You do not have permission to do this');
Error('');
when web service was running this process they would get the following error.
'Microsoft.Dynamics.Nav.Types.Exceptions.NavNCLDialogException'
To solve this. I changed the code to
if isservicetier then
Error('You do not have permission to do this')
else
Message('You do not have permission to do this');
Error('');
Ahmed Rashed Amini
Independent Consultant/Developer
blog:
https://dynamicsuser.net/nav/b/ara3n0
Comments
instead of
:-k
Independent Consultant/Developer
blog: https://dynamicsuser.net/nav/b/ara3n
Codeunit 1 doesn't work correctly with errors, and tends to buffer them.
Independent Consultant/Developer
blog: https://dynamicsuser.net/nav/b/ara3n