Friday 9 January 2015

Open Axapta X++ Report throw Clicked method.

Open Axapta X++ Report throw Clicked method.

void clicked()
{
    Args args = new args();
    ReportRun       reportRun;
    ;
    args.parm(salesTable.SalesId);

    args.name(reportstr(GiveReportName));
    reportRun = classFactory.reportRunClass(args);
    reportRun.init();
    reportrun.run();
    super();
}


Thank You!!

1 comment:

  1. Hi! I found your blog today and I'm impressed with the quality of your content. I'll be definitely back soon! And go ahead to check out axapta.
    I hope everything goes well for you. Cheers!

    ReplyDelete

Import General journal from excel in D365 F&O

 Hi Guys, Import General journal from excel in D365 F&O Code:  using System.IO; using OfficeOpenXml; using OfficeOpenXml.ExcelPackage; u...