RE: Best method to print a report through Job Queue - BC SaaS
Hello,
This is by design based on code:
if "Report Output Type" = "Report Output Type"::Print then begin
if EnvironmentInfo.IsSaaS then begin
"Report Output Type" := "Report Output Type"::PDF;
Message(NoPrintOnSaaSMsg);
end else
"Printer Name" := InitServerPrinterTable.FindClosestMatchToClientDefaultPrinter("Object ID to Run");
NoPrintOnSaaSMsg: Label 'You cannot select a printer from this online product. Instead, save as PDF, or another format, which you can print later.\\The output type has been set to PDF.';
If you want this to be changed, which I can imagine you want, please raise it as an idea via https://aka.ms/bcideas .
Thanks.