Enum extension 482 JQ Report Output Type Ext

App
Base Application
Namespace
System.Threading
Versions
27-28
Extends
Job Queue Report Output Type

Values, 4

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/System/JobQueue/JQReportOutputTypeExt.EnumExt.al27 lines, Copyright (c) Microsoft Corporation. MIT

namespace System.Threading;

#pragma warning disable PTE0023 // Allow using numbers outside PTE range
enumextension 482 "JQ Report Output Type Ext" extends "Job Queue Report Output Type"
{
    value(0; "PDF")
    {
        Implementation = "Job Queue Report Runner" = "Job Queue Start Report";
        Caption = 'PDF';
    }
    value(1; "Word")
    {
        Implementation = "Job Queue Report Runner" = "Job Queue Start Report";
        Caption = 'Word';
    }
    value(2; "Excel")
    {
        Implementation = "Job Queue Report Runner" = "Job Queue Start Report";
        Caption = 'Excel';
    }
    value(3; "Print")
    {
        Implementation = "Job Queue Report Runner" = "Job Queue Start Report";
        Caption = 'Print';
    }
}