AXForum  
Вернуться   AXForum > Microsoft Dynamics AX > DAX Blogs
All
Забыли пароль?
Зарегистрироваться Правила Справка Пользователи Сообщения за день Поиск

 
 
Опции темы Поиск в этой теме Опции просмотра
Старый 04.05.2010, 18:05   #1  
Blog bot is offline
Blog bot
Участник
 
25,643 / 848 (80) +++++++
Регистрация: 28.10.2006
paruvella: Displaying the Standard Ax report in EP pages of AX
Источник: http://paruvella.spaces.live.com/Blo...4DB0!509.entry
==============

If we have scenario like, client not ready to adapt the SSRS, and he wants the report in EP pages of Dynamics Ax 2009. Eventually we need to use standard Ax reports for generating the reports.

 

Can we show the standard Ax reports in EP pages?

Yes, we can utilize the same standard Ax reports and can be displayed in the EP pages.

 

The following example will illustrate the same.

 

Displaying the Standard Ax Customers report in EP pages.

 

 Create the following Class and add to the Proxies node.

 

class PSReportRunFromEP

{

    Args                 reportArgs;

    ReportName           reportName;

    ReportRun            reportRun;

    Report               report;

    PrintJobSettings     printJobSettings;

    Query                query;

    CustAccount          custAccount;

}

 

void initValue()

{

    ;

    reportName = "Cust";

    reportArgs = new Args(reportName);

    reportArgs.name(reportName);

}

 

void reportRun()

{

    ;

    reportRun = new ReportRun(reportArgs);

 

    // Set printersettings

    printJobSettings = reportRun.printJobSettings();

    printJobSettings.setTarget(PrintMedium::File);

    printJobSettings.format(PrintFormat::PDF);

    printJobSettings.fileName("D:\\Customers.pdf");

    printJobSettings.suppressScalingMessage(true);

   

    reportRun.report().interactive(false);

If we want add any filters to the query like passing customer account number, then we will use the following statement.

    //reportRun.query(query); 

    reportRun.query().interactive(false);

    reportRun.init();

    reportRun.run();

}

public static void reportToPDFFile()

{

    PSReportRunFromEP reportRunFromEP = new PSReportRunFromEP();

    ;

    reportRunFromEP.initValue();

    reportRunFromEP.reportRun();

}

 

static void main(Args args)

{

    ;

    PSReportRunFromEP::reportToPDFFile();

}

 

We can test the same, by executing the above class. PDF file will be generated with the customer details.

 

Development for EP:

 

Add the above class to the Proxies under  AOT àWebàWeb FilesàStatic FilesàProxies

 

/class:PSReportRunFromEP

    /method:PSReportRunFromEP.reportToPDFFile

 

 Create the new web part and add the following code to the web part:

 

using Microsoft.Dynamics.Framework.BusinessConnector.Session;

using System.IO;

using ApplicationProxy = Microsoft.Dynamics.Portal.Application.Proxy;

using Proxy = Microsoft.Dynamics.Framework.BusinessConnector.Proxy;

 

protected void Page_Load(object sender, EventArgs e)

    {

        FileInfo fi = null;

 

//calling the proxy method for generating the report into PDF file and the same report we are displaying in EP       

Microsoft.Dynamics.Portal.Application.Proxy.PSReportRunFromEP.reportToPDFFile(this.AxSession.AxaptaAdapter);

        fi = new FileInfo("D:\\Customers.pdf");

 

        if (fi.Exists)

        {

            Response.Clear();

            Response.ContentType = "application/pdf";

            Response.Flush();

            Response.WriteFile(fi.FullName);

            Response.End();

           

        }

       

    }

 

Add this web part to the new page, import the URL definition in to the Ax AOT, and add this URL to web menus of Sales module.

 


 

This way, we can show the standard Ax reports in EP pages.



Источник: http://paruvella.spaces.live.com/Blo...4DB0!509.entry
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору.
 

Похожие темы
Тема Автор Раздел Ответов Посл. сообщение
paruvella: Displaying SSRS report in Ax-EP page Blog bot DAX Blogs 0 02.02.2010 21:05
paruvella: Dynamics Ax - Simple SSRS report example by using Ax-Query and Ranges Blog bot DAX Blogs 0 08.01.2010 16:05
paruvella: Displaying the employee images on the EP pages of Dynamics Ax Blog bot DAX Blogs 0 15.12.2009 23:05
paruvella: Different styles (*.css) for our EP pages of Ax 2009 Blog bot DAX Blogs 0 12.11.2009 21:05
emeadaxsupport: The Dynamics AX Client sometimes terminates when displaying certain HTML pages in a Web browser control Blog bot DAX Blogs 0 15.10.2009 15:05

Ваши права в разделе
Вы не можете создавать новые темы
Вы не можете отвечать в темах
Вы не можете прикреплять вложения
Вы не можете редактировать свои сообщения

BB коды Вкл.
Смайлы Вкл.
[IMG] код Вкл.
HTML код Выкл.
Быстрый переход

Рейтинг@Mail.ru
Часовой пояс GMT +3, время: 01:14.