Codeunit 462 Job Queue Activate Next
- App
- Base Application
- Namespace
- System.Threading
- Versions
- 24-28
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Modules/System/JobQueue/JobQueueActivateNext.codeunit.al16 lines, Copyright (c) Microsoft Corporation. MIT
namespace System.Threading;
codeunit 462 "Job Queue Activate Next"
{
SingleInstance = true;
InherentEntitlements = X;
InherentPermissions = X;
TableNo = "Job Queue Entry";
trigger OnRun()
begin
Rec.ActivateNextJobInCategory();
end;
}