Hi All,
I am using nav 2017
I use job queue to complete line actions (IC posting)
but sometimes user careless, then they will send twice from sales to ic outbox (so become redundant)
my question is... usually my job queue if not successful, then the status for job queue changed become Error
but now it's gone
meaning there is no error status, but my job queue entries gone
Did I do something wrong for this job queue?
Thanks
0
Answers
some are just disappeared.
We use Recurring Job Queue Entries quite heavily in our system, and after upgrading to 2017 we found entries were being deleted. It was due to this function in Codeunit 453:
RemoveFailedJobs(JobQueueEntry);
We had to customize this function, adding this line:
This solved the issue for us.
thanks a lot
this solve the issue!