Dear Experts,
For PSAQUOTATION report I created one more design named as Report1. I added this design in PSAQuotationsController class by creating the outputReport method like below. But I wants to print default report as well as Report1 based on user requirement. Can this possible in AX?
public void outputReport()
{
str reportDesign = 'PSAQuotations.Report1';
//str reportDesign = 'PSAQuotations.Report';
this.parmReportName(reportDesign);
this.parmReportContract().parmReportName(reportDesign);
formLetterReport.parmReportRun().settingDetail().parmReportFormatName(reportDesign);
super();
}
Thanks
Faqru Shaik