Hi,
I would like to receive some technical guidance on next situation.
A user can select which documents he/ she wants to be attached to an email. Based on the selection also a cover sheet is created and attached. The user selection is done on a TempDB table with checkboxes in front. The SSRS report needs multiple columns of this TempDB. For instance, the user selects three documents out of five. In that case I need to add those three documents and create a cover page. The cover page is a pdf which is created by SSRS and that works fine. However, the data collection by the SSRS report is not matching perfectly.
I currently have implemented a pipe delimited string to pass one column to the report as a parameter. Namely, SSRS does not allow an array, dataset, table, etc. Now it turns out I need more columns of the user selection in my SSRS report to run a query. How can I pass multiple columns to the report data provider/ controller without having to create multiple pipe-delimited strings? Take notice the selection table of the user is a TempDB table and is not persistent. Currently, a TempDB with a usersession is created by SSRS and then the pdf is created. Filling this TempDB table must depend on multiple columns from the user selection.
D.