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!!
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!!