Problem with JobQueue

ALOULOUMEDALOULOUMED Member Posts: 2
Please could you help me . I have installed nas in nav with sql I did all the instructions about authentification windows login ans SQL sys admin and I have allowed to the user all permissions in nav But I hav received this message :


The codeunit was called with a Job Queue Entry record. It should be a Customer record.

Many thanks

Comments

  • RnRRnR Member Posts: 21
    The codeunit you are calling from the job queue must have a record ref. to Job Queue Entry.

    OnRun(VAR Rec : Record "Job Queue Entry")

    From the codeunit you are calling:
    Shift + F4
    TableNo | Job Queue Entry

    voila
  • krikikriki Member, Moderator Posts: 9,110
    That means you need to create an extra codeunit that calls the codeunit you want to call and that has the correct parameters:

    The codeunit must receive a "Job Queue Entry" record

    and then call your codeunit with a Customer record.
    Regards,Alain Krikilion
    No PM,please use the forum. || May the <SOLVED>-attribute be in your title!


Sign In or Register to comment.