AX 2012 MophX Report Export To File

    args                args;
    ReportRun           rr;
    Report              rb;
    PrintJobSettings    pjs;
    ;
    args= new Args("Report");
    args.record(common));
    args.parmEnum(PrintCopyOriginal::OriginalPrint);

    rr = new ReportRun(Args);
    rb  = rr.report();
    rr.suppressReportIsEmptyMessage(true);  // no more "Report is empty..." stuff
    pjs = rr.printJobSettings();
    pjs.virtualPageHeight(0);
    pjs.fitToPage(true);

    rb.interactive(false);
    rr.query().interactive(false);
    pjs.setTarget(PrintMedium::File);
    pjs.viewerType(ReportOutputUserType::HTML);
    rr.init();
    pjs.setTarget(PrintMedium::File);
    pjs.viewerType(ReportOutputUserType::HTML);
    pjs.format(printFormat::HTML);

    pjs.fileName(@"fileName");
    rr.run();

  

时间: 2024-08-29 12:19:28

AX 2012 MophX Report Export To File的相关文章

AX 2012 SSRS Report Export To File

Args Args; SrsReportRunController controller; Common _record; SRSPrintDestinationSettings printSettings; ; controller= new SrsReportRunController(); controller.parmReportName("SysDataBaseLog.Report"); Args = new Args(); args.record(_record); con

Upgrading AX 2009 SSRS Report To AX 2012 SSRS Report

In AX 2012, the old SSRS reports for AX 2009 is stored in the AOT node "Report Libraries". We can find it all in the view 'Application Explorer' of visual studio,  but we can't modify it as usual. Refer to the MSDN's essay, if we want to modify

Overview of Form Control Types [AX 2012]

Overview of Form Control Types [AX 2012] Other Versions 0 out of 1 rated this helpful - Rate this topic Updated: October 11, 2011 Applies To: Microsoft Dynamics AX 2012 R3, Microsoft Dynamics AX 2012 R2, Microsoft Dynamics AX 2012 Feature Pack, Micro

The new concept 'Model' in AX 2012

There is a new concept 'Model' in AX 2012 rather than AX 2009. It can be considered as a container to store all the AOT elements. If you have some experience in .NET programing, you can regard it as 'Namespace'. Yes, it is only a virtual container or

How to: Debug X++ Code Running in .NET Business Connector [AX 2012]

This topic has not yet been rated - Rate this topic http://msdn.microsoft.com/EN-US/library/bb190066.aspx Updated: December 16, 2011 Applies To: Microsoft Dynamics AX 2012 R3, Microsoft Dynamics AX 2012 R2, Microsoft Dynamics AX 2012 Feature Pack, Mi

Table Properties [AX 2012]

Table Properties [AX 2012] 1 out of 2 rated this helpful - Rate this topic Updated: July 20, 2012 Applies To: Microsoft Dynamics AX 2012 R2, Microsoft Dynamics AX 2012 Feature Pack, Microsoft Dynamics AX 2012 This topic describes the properties that

View Properties [AX 2012]

View Properties [AX 2012] Other Versions This topic has not yet been rated - Rate this topic Updated: July 20, 2012 Applies To: Microsoft Dynamics AX 2012 R2, Microsoft Dynamics AX 2012 Feature Pack, Microsoft Dynamics AX 2012 在 Views中的属性和在表中的一样,但因为视

AX 2012 DataBase

After installed the AX 2012, we would found that there are five database created in the SQL server. 1.MicroSoftDynamicsAxapta:The main database for AX, all the system data is stored in it, AOS connects to this database to process the all system trans

Crystal Report: export to html

摘要:Crystal Report: export to html Export to html or PDF or Excel file: Private Sub Print(ByVal strRpt As String) ??? Dim reportDoc As New ReportDocument ??? lblDBErrorMessage.Text = "" ??? Dim rpt_ds As DataSet = GetRptDS() ??? If lblDBErrorMess