Page 676 Schedule a Job, source in 29
Source29
src/Layers/W1/BaseApp/Modules/System/JobQueue/ScheduleaJob.Page.al63 lines, Copyright (c) Microsoft Corporation. MIT
namespace System.Threading;
page 676 "Schedule a Job"
{
Caption = 'Schedule a Job';
DataCaptionExpression = Rec.Description;
DeleteAllowed = false;
InsertAllowed = false;
PageType = StandardDialog;
SourceTable = "Job Queue Entry";
SourceTableTemporary = true;
layout
{
area(content)
{
field(Description; Rec.Description)
{
ApplicationArea = Basic, Suite;
Enabled = false;
ToolTip = 'Specifies a description of the job queue entry. You can edit and update the description on the job queue entry card. The description is also displayed in the Job Queue Entries window, but it cannot be updated there.';
}
field("Earliest Start Date/Time"; Rec."Earliest Start Date/Time")
{
ApplicationArea = Basic, Suite;
ToolTip = 'Specifies the earliest date and time when the job should be started. If you leave the field blank, the job starts when you choose the OK button. The format for the date and time must be month/day/year hour:minute, and then AM or PM. For example, 3/10/2021 12:00 AM.';
}
}
}
actions
{
}
trigger OnQueryClosePage(CloseAction: Action): Boolean
var
JobQueueEntry: Record "Job Queue Entry";
begin
if CloseAction <> ACTION::OK then
exit(true);
JobQueueEntry := Rec;
Clear(JobQueueEntry.ID); // "Job Queue - Enqueue" defines it on the real record insert
CODEUNIT.Run(CODEUNIT::"Job Queue - Enqueue", JobQueueEntry);
exit(true);
end;
procedure ScheduleJob(JobQueueEntry: Record "Job Queue Entry"): Boolean
var
ScheduleAJob: Page "Schedule a Job";
begin
ScheduleAJob.SetJob(JobQueueEntry);
exit(ScheduleAJob.RunModal() = ACTION::OK);
end;
procedure SetJob(JobQueueEntry: Record "Job Queue Entry")
begin
Rec := JobQueueEntry;
Rec.Insert(true);
end;
}