Hi all,
How can pass multiple parameter from AX to SSRS report while calling the report throw code.
I know how to do it with 1 parameter but how can I do it when I have more than 1 parameters on the report?
Sample code for passing 1 parm:
"
MenuFunction SSRS_Report;
Args Args;
str parmId ="";
;
super();
SSRS_Report = new MenuFunction(menuItemOutputStr(PurchaseOrderEn),MenuItemType::Output);
Args = new Args();
parmId = “Dataset1_ParmId=” + VendPurchOrderJour.ParmId;
Args.parm(parmId);
SSRS_Report.run(Args);
"
thanks!