You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
procedure ShowJobQueueEntry()
var
JobQueueEntry: Record "Job Queue Entry";
//----------------------------------------------------------------------OnBeforeShowJobQueueEntry:BEGIN
IsHandled: Boolean;
//----------------------------------------------------------------------OnBeforeShowJobQueueEntry:END
begin
JobQueueEntry.SetRange("Object Type to Run", JobQueueEntry."Object Type to Run"::Codeunit);
JobQueueEntry.SetRange("Object ID to Run", CODEUNIT::"Update Currency Exchange Rates");
//----------------------------------------------------------------------OnBeforeShowJobQueueEntry:BEGIN
IsHandled := false;
OnBeforeShowJobQueueEntry(Rec, JobQueueEntry, IsHandled);
if IsHandled then
exit;
//----------------------------------------------------------------------OnBeforeShowJobQueueEntry:END
if JobQueueEntry.FindFirst() then
PAGE.Run(PAGE::"Job Queue Entry Card", JobQueueEntry);
end;
//----------------------------------------------------------------------OnBeforeShowJobQueueEntry:BEGIN
[IntegrationEvent(true, false)]
local procedure OnBeforeShowJobQueueEntry(var Rec: Record "Curr. Exch. Rate Update Setup"; var JobQueueEntry: Record "Job Queue Entry"; var IsHandled: Boolean)
begin
end;
//----------------------------------------------------------------------OnBeforeShowJobQueueEntry:END
Additional context
We need option skip open page and option how to change filters before open page
Internal work item: AB#561105
The text was updated successfully, but these errors were encountered:
Describe the request
Please add new event
Additional context
We need option skip open page and option how to change filters before open page
Internal work item: AB#561105
The text was updated successfully, but these errors were encountered: