PC Review


Reply
Thread Tools Rate Thread

Call Report from SSRS

 
 
Scott Whetsell, A.S. - WVSP
Guest
Posts: n/a
 
      9th Feb 2010
I am seeking guidance on being able to pass parameter data gathered from a
form and call a report available on SQL Server Reporting Services.

Front end uses Access 2003 SP3.
Back End and Report Server uses SQL Server Enterprise 2008.

Do to a reconfiguration of our network, we are moving away from Access
generated reports, but still need to be able to call reports from SSRS from
within Access as well as from the Report Server website.
 
Reply With Quote
 
 
 
 
Mark Andrews
Guest
Posts: n/a
 
      9th Feb 2010
You could just open a browser and pass in the correct URL to call your SSRS
report.
Build the url in code as a string.

Hopefully you can achieve what you need to by calling a URL.

Public Sub OpenWebPage(url As String)

Dim browser As Variant

Set browser = CreateObject("InternetExplorer.Application")
browser.Navigate (url)
browser.StatusBar = False
browser.Toolbar = False
browser.visible = True
browser.Resizable = True
browser.AddressBar = False


End Sub

HTH,
Mark

"Scott Whetsell, A.S. - WVSP"
<(E-Mail Removed)> wrote in message
news:B893810C-34AC-464F-863B-(E-Mail Removed)...
> I am seeking guidance on being able to pass parameter data gathered from a
> form and call a report available on SQL Server Reporting Services.
>
> Front end uses Access 2003 SP3.
> Back End and Report Server uses SQL Server Enterprise 2008.
>
> Do to a reconfiguration of our network, we are moving away from Access
> generated reports, but still need to be able to call reports from SSRS
> from
> within Access as well as from the Report Server website.


 
Reply With Quote
 
Scott Whetsell, A.S. - WVSP
Guest
Posts: n/a
 
      10th Feb 2010
Mark,

Thanks for your reply. Any idea how to pass the variables for the report?



"Mark Andrews" wrote:

> You could just open a browser and pass in the correct URL to call your SSRS
> report.
> Build the url in code as a string.
>
> Hopefully you can achieve what you need to by calling a URL.
>
> Public Sub OpenWebPage(url As String)
>
> Dim browser As Variant
>
> Set browser = CreateObject("InternetExplorer.Application")
> browser.Navigate (url)
> browser.StatusBar = False
> browser.Toolbar = False
> browser.visible = True
> browser.Resizable = True
> browser.AddressBar = False
>
>
> End Sub
>
> HTH,
> Mark
>
> "Scott Whetsell, A.S. - WVSP"
> <(E-Mail Removed)> wrote in message
> news:B893810C-34AC-464F-863B-(E-Mail Removed)...
> > I am seeking guidance on being able to pass parameter data gathered from a
> > form and call a report available on SQL Server Reporting Services.
> >
> > Front end uses Access 2003 SP3.
> > Back End and Report Server uses SQL Server Enterprise 2008.
> >
> > Do to a reconfiguration of our network, we are moving away from Access
> > generated reports, but still need to be able to call reports from SSRS
> > from
> > within Access as well as from the Report Server website.

>
> .
>

 
Reply With Quote
 
Mark Andrews
Guest
Posts: n/a
 
      11th Feb 2010
It's been a few years since I used SSRS. I did a quick search, this article
might help:
http://www.mssqltips.com/tip.asp?tip=1336

Mark

"Scott Whetsell, A.S. - WVSP"
<(E-Mail Removed)> wrote in message
news:84DD16C6-CAE9-4CB6-8959-(E-Mail Removed)...
> Mark,
>
> Thanks for your reply. Any idea how to pass the variables for the report?
>
>
>
> "Mark Andrews" wrote:
>
>> You could just open a browser and pass in the correct URL to call your
>> SSRS
>> report.
>> Build the url in code as a string.
>>
>> Hopefully you can achieve what you need to by calling a URL.
>>
>> Public Sub OpenWebPage(url As String)
>>
>> Dim browser As Variant
>>
>> Set browser = CreateObject("InternetExplorer.Application")
>> browser.Navigate (url)
>> browser.StatusBar = False
>> browser.Toolbar = False
>> browser.visible = True
>> browser.Resizable = True
>> browser.AddressBar = False
>>
>>
>> End Sub
>>
>> HTH,
>> Mark
>>
>> "Scott Whetsell, A.S. - WVSP"
>> <(E-Mail Removed)> wrote in message
>> news:B893810C-34AC-464F-863B-(E-Mail Removed)...
>> > I am seeking guidance on being able to pass parameter data gathered
>> > from a
>> > form and call a report available on SQL Server Reporting Services.
>> >
>> > Front end uses Access 2003 SP3.
>> > Back End and Report Server uses SQL Server Enterprise 2008.
>> >
>> > Do to a reconfiguration of our network, we are moving away from Access
>> > generated reports, but still need to be able to call reports from SSRS
>> > from
>> > within Access as well as from the Report Server website.

>>
>> .
>>

 
Reply With Quote
 
Scott Whetsell, A.S. - WVSP
Guest
Posts: n/a
 
      11th Feb 2010
Great. Thanks Mark.

"Mark Andrews" wrote:

> It's been a few years since I used SSRS. I did a quick search, this article
> might help:
> http://www.mssqltips.com/tip.asp?tip=1336
>
> Mark
>
> "Scott Whetsell, A.S. - WVSP"
> <(E-Mail Removed)> wrote in message
> news:84DD16C6-CAE9-4CB6-8959-(E-Mail Removed)...
> > Mark,
> >
> > Thanks for your reply. Any idea how to pass the variables for the report?
> >
> >
> >
> > "Mark Andrews" wrote:
> >
> >> You could just open a browser and pass in the correct URL to call your
> >> SSRS
> >> report.
> >> Build the url in code as a string.
> >>
> >> Hopefully you can achieve what you need to by calling a URL.
> >>
> >> Public Sub OpenWebPage(url As String)
> >>
> >> Dim browser As Variant
> >>
> >> Set browser = CreateObject("InternetExplorer.Application")
> >> browser.Navigate (url)
> >> browser.StatusBar = False
> >> browser.Toolbar = False
> >> browser.visible = True
> >> browser.Resizable = True
> >> browser.AddressBar = False
> >>
> >>
> >> End Sub
> >>
> >> HTH,
> >> Mark
> >>
> >> "Scott Whetsell, A.S. - WVSP"
> >> <(E-Mail Removed)> wrote in message
> >> news:B893810C-34AC-464F-863B-(E-Mail Removed)...
> >> > I am seeking guidance on being able to pass parameter data gathered
> >> > from a
> >> > form and call a report available on SQL Server Reporting Services.
> >> >
> >> > Front end uses Access 2003 SP3.
> >> > Back End and Report Server uses SQL Server Enterprise 2008.
> >> >
> >> > Do to a reconfiguration of our network, we are moving away from Access
> >> > generated reports, but still need to be able to call reports from SSRS
> >> > from
> >> > within Access as well as from the Report Server website.
> >>
> >> .
> >>

> .
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How I can respond to client report from SSRS render without exposedthe SSRS address? mttc Microsoft ASP .NET 0 20th Jul 2009 09:48 PM
Issue displaying SSRS 2005 web report Robin9876 Microsoft ASP .NET 0 8th Sep 2008 01:22 PM
ssrs report viewer does not work under compiled asp.net? jobs Microsoft ASP .NET 0 5th Oct 2007 02:19 AM
Getting Error Using Report Viewer(SSRS) with Ajax =?Utf-8?B?R3lhbmVuZHJh?= Microsoft C# .NET 2 14th Jun 2007 03:51 PM
How to print a SQLServer Reporting Services (SSRS) Report from Access Paletti Microsoft Access 1 19th Jan 2006 12:38 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:08 PM.