I have a report that shows all errors (if there are any) from a process that runs every day.
At the end of the process, I want to write some code to execute the report and email it. I am seeing how to email a report from code, but I can’t seem to find anywhere that shows how to run the report from code.
I am using C# in vs 08, and the report is from ssrs 08. Any assistance would be greatly appreciated!
I have a report that shows all errors (if there are any) from a
Share
I ended up creating a new subscription to the report which creates a job.
I ran the job from code that executes the job(Taken from Microsoft)
Like this:
By calling the job- which is a subscription – the report was rendered and emailed to the subscription recipients.