Hi all,
I have a requirement where I need to print 2 different design of SalesInvoice Report on screen at the same time.
So, I added the following code to the runReport() Method of SalesInvoiceController Class:
public void runReport()
{
super();
this.parmReportContract().parmReportName(ssrsReportStr(SalesInvoice, MyDesign));
this.parmReportName(ssrsReportStr(SalesInvoice, MyDesign));
super();
}
Now I am experiencing that when I run the Invoice Report, the 2nd design sometimes gets printed with data on it and sometimes showing just a blank screen, when I run the same report.
Anybody can help?