印刷ダイアログを強制的に開いて、ユーザーがメールアドレスを設定して[OK]を押すだけで済むようにしようとしています。印刷ダイアログなしでレポートをファイルまたはプリンターに印刷する方法について複数のチュートリアルを見つけましたが、それは私が探しているものではありません。
通常、レポートを電子メールで送信するには、ユーザーはレポートを表示し、ツールバーの印刷アイコンをクリックしてから、電子メールを選択して送信します。最初の2つのステップを自動的に切り取りたいです。
これは、これまでのところこれを行うための私の多くの試みの1つですが、役に立ちません。
void emailInvoice()
{
Args args;
ReportRun rr;
Report rb;
PrintJobSettings pjs;
CustInvoiceJour record;
;
select record where record.RecId == 5637175089;
args = new Args("SalesInvoice");
args.record(record);
args.parmEnum(PrintCopyOriginal::OriginalPrint);
// Set report run properties
rr = new ReportRun(args,'');
rr.suppressReportIsEmptyMessage(true);
rr.query().interactive(false);
// set report properties
rb = rr.report();
rb.interactive(true);
// set print job settings
pjs = rr.printJobSettings();
pjs.fileName(strfmt("C:\\Users\\gbonzo\\Desktop\\%1.pdf", record.SalesId));
pjs.fitToPage(true);
// break the report info pages using the height of the current printer's paper
pjs.virtualPageHeight(-1);
// force PDF printing
pjs.format(PrintFormat::PDF);
pjs.setTarget(PrintMedium::Mail);
pjs.viewerType(ReportOutputUserType::PDF);
// lock the print job settings so can't be changed
// X++ code int the report may try to change the destination
// to the screen for example but this does not make
// sense when running a report here
pjs.lockDestinationProperties(true);
// Initialize the report
rr.init();
rr.run();
}
よろしくお願いします!