SSRS report

On form PurchlineBackorderlistpage i need to keep button so that SSRS report get printed…in that if select multiple lines for vendor that many new reports should get generated.

example : if i select vendor 4001 qnd 4002 on clicking that btn 2 reports must print on screen.

ple do provide assistance on this.

Hi,

this is not an easy task with SSRS (well, unless you haven’t done that before). You will have to adapt the report controller class. The class would catch the Args from the caller and read the marked records on that caller’s data source. From the marked records you can extract the primary IDs of the marked records and then apply them to the query of the report as ranges. The method which you want to override in the controller class is preRunModifyContract().

Take a look at the example over here:

[https://msdax.wordpress.com/2012/05/01/how-to-set-the-query-range-on-a-ssrs-report/](http://Hi, this is not an easy task with SSRS (well, unless you haven’t done that before). You will have to adapt the report controller class. The class would catch the Args from the caller and read the marked records on that caller’s data source. From the marked records you can extract the primary IDs of the marked records and then apply them to the query of the report as ranges. The method which you want to override in the controller class is preRunModifyContract(). Take a look at the example over here https:)

Janis.

Thanks alot…am unable to open the link wat u have provided…could u ple post the link once again

…yeap, I noticed that there is something wrong with a hyperlink behind that text, but why didn’t you try to copy that link as a text in your browser’s address bar?

https://msdax.wordpress.com/2012/05/01/how-to-set-the-query-range-on-a-ssrs-report/

Janis