Hi all,
I am trying to call multiple report designs at the same time. The problem is that this report is a standard report known as Picking List document layout (WMSPickingList_OrderPick) and this SSRS Report is basically called through Controller class.
I am placing following code in the controller class's prePromptModifyContract() method, which is basically driving the condition in which I need to show multiple Designs.
if (wmsPickingRoute.CDItemsIncludedEND)
{
this.parmReportContract().parmReportName(ssrsReportStr(WMSPickingList_OrderPick, ReportCD));
this.parmReportContract().parmReportName(ssrsReportStr(WMSPickingList_OrderPick, ReportNonCD));
}
else
{
this.parmReportContract().parmReportName(ssrsReportStr(WMSPickingList_OrderPick, ReportNonCD));
}
I have also done multiple layouts in Print Management settings of this report, but this doesn't seem to work very well probably because the Report menu item is linked with one (default) design.
Any ideas or suggestions regarding how I can achieve running/calling multiple or only one Report design at Run time?
I will appreciate your feedback.
*This post is locked for comments