Alfasith AX: Error: No connection could be made because the tar...: Hi, This error will arise in many different cases. 1. Some time it thrown when you open any reports in Dynamic AX 2012 2. Some t...
This post describes how to run an SSRS report through x++ code and passing report parameters as well. Its a simple code and comments are added for further ease in code understanding! public static void runSSRSReport() { SrsReportRunController controller; controller = new SrsReportRunController(); controller.parmLoadFromSysLastValue(false); // write report name and its design in quotes that you want to run controller.parmReportName("ReportName.DesignName"); // set additional, optional properties like setting landscape to true controller.parmReportContract().parmPrintSettings().landscape(true); // set print destination screen/printer/file etc. controller.parmReportContract().parmPrintSettings().printMediumType (SRSPrintMediumType::S...
Comments
Post a Comment