Hi All,
I have created one ssrs report with one string parameter. I try to call this SSRS report through output menuitem and x++.
I am using the below code but, the value is not passing to the report. I am sure the value is there in the table.
MenuFunction SSRS_Report;
Args Args;
str parmId ="";
super();
SSRS_Report = new MenuFunction(menuItemOutputStr(DeliveryReceiptMenuItem),MenuItemType::Output);
Args = new Args();
parmId = "DeliveryReceiptParmId=" + DeliveryReceiptTable.Id;
Args.parm(parmId);
SSRS_Report.run(Args);
Thanks in advance,
Hari
*This post is locked for comments