Hi, I am subscribing an event of codeunit 449 - Job Queue Start Codeunit. But I am not getting my required result. for example inset a record in custom table.
Here is my code
EventSubscriberInstance = StaticAutomatic;
[EventSubscriber(ObjectType::Codeunit, 449, 'OnAfterRun', '', true, true)]
procedure abd(JobQueueEntry: Record "Job Queue Entry")
begin
Message(StrSubstNo('%1', JobQueueEntry.Status));
end;