I have a stored procedure, that generates some columns dynamically. I want to use Crystal Reports as a reporting service and, in particular, I need to generate report from this stored proc data. It's a poll-result report and for each poll act there is a row with it's ID and answers to the questions(one column for each question with questions IDs as headers). Customer has different forms with different number of questions, so number of columns is unknown for a common report.
So, the questions are:
- Can I make the report view all columns from the returned dataset?
- (If not,) Can I add fields to a existing report during runtime?
- (If not,) Do you know any reporting services that can do such a thing? :)
P. S.: I know that the report design is really weird and this problem should not exist at all, but this is one of customer's demands...