Showing posts with label correctly. Show all posts
Showing posts with label correctly. Show all posts

Monday, March 12, 2012

Report Manager not displaying correctly

I have managed to get reporting services running on Vista, but when I open report manager, I don't see the "Contents" or "Properties" tabs. I get the "SQL Server Reporting Services - Home" header and the links on the top right, but no tabs along the yellow or blue lines. I also have created and deployed a report but it does not show up in Report Manager.

What step have I missed?

Thanks,

Dan

Hi,

I am not sure if you are setting up SQLRS to use in conjunction with TFS (this forum is for TFS setup issues), but the folks on the SQLRS forums are better equipped to handle questions like this. I am moving this thread over there so that they can help you out:

http://forums.microsoft.com/MSDN/ShowForum.aspx?ForumID=82&SiteID=1

thanks,

Tony

Report Manager not displaying correctly

I have managed to get reporting services running on Vista, but when I open report manager, I don't see the "Contents" or "Properties" tabs. I get the "SQL Server Reporting Services - Home" header and the links on the top right, but no tabs along the yellow or blue lines. I also have created and deployed a report but it does not show up in Report Manager.

What step have I missed?

Thanks,

Dan

What version of Vista are you running?|||

On Vista, IE does not run as administrator by default. Try running IE as administrator or from a none-Vista machine and see if you have the same problems.

|||

Thanks for answering the post. Getting Reporting Services installed on Vista has been more than a little frustrating. To answer both reponses:

- I'm running Vista Ultimate.

- Tried running IE as Admin and that didn't help.

|||

Consult with Lisa on this one. I think she will be all over it:

http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1734888&SiteID=1

Friday, March 9, 2012

Report Manager

I think I have Reporting Services installed correctly and it is working except for the Report Manager.
When I browse to http://localhost/reportserver I dont have a user interface. All I see is big black letters saying localhost/reportserver -/ and underneath is a list of the reports I have deployed.
How do I get the user interface to show?
Your help is appreciated.
Roy

OK,
The answer is so simple I can't beleive I overlooked it.
The path to Report Manager is http://<servername>/reports
When I browsed there everything was as expected.|||The Report Manager web application resides here:
http://locahost/reports.

You are accessing the web service URL.

Todd

Wednesday, March 7, 2012

'Report Is Being Generated' Message and Graphic not Displaying

Hello,
I am using ReportViewer in a Web Page with a Server Report and
Asyncrendering is turned on. The report displays correctly; however, the
'Report Is Being Generated' message and graphic do not display when the
report is loading.
It works fine in Report Manager. It is a big problem because the user can
not tell when a report is loading and they keep pressing the 'View Report'
button.
Any suggestions?
Thanks.Hello,
Have you tried this on other develop machine to develop a new report for
test?
Have you use the impersonate in your ASP.NET web application?
If so, what's the permission you have on the report server?
Also, please add your report server to the trust site in the IE and try to
set the security level to low to have a try.
Sincerely,
Wei Lu
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================This posting is provided "AS IS" with no warranties, and confers no rights.|||> Have you tried this on other develop machine to develop a new report for
> test?
No.
> Have you use the impersonate in your ASP.NET web application?
No.
>Also, please add your report server to the trust site in the IE and try to
> set the security level to low to have a try.
I tried this and it didn't work
What do you suggest based on these answers?
Thank
"Wei Lu [MSFT]" wrote:
> Hello,
> Have you tried this on other develop machine to develop a new report for
> test?
> Have you use the impersonate in your ASP.NET web application?
> If so, what's the permission you have on the report server?
> Also, please add your report server to the trust site in the IE and try to
> set the security level to low to have a try.
> Sincerely,
> Wei Lu
> Microsoft Online Community Support
> ==================================================> When responding to posts, please "Reply to Group" via your newsreader so
> that others may learn and benefit from your issue.
> ==================================================> This posting is provided "AS IS" with no warranties, and confers no rights.
>|||Hello,
I suggest you to check the develop this report on another machine to check
whether this issue appeared or not.
Sincerely,
Wei Lu
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================This posting is provided "AS IS" with no warranties, and confers no rights.|||Hello,
Did you use any User Control to hold the ReportViewer? If you put your
ReportViewer to a single aspx page, does this issue appeared?
Sincerely,
Wei Lu
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================This posting is provided "AS IS" with no warranties, and confers no rights.|||Hello
I find some user got the similar issue as you but I did not find any
solution since I could not reproduce this issue on my side.
Could you try to generate a simple sample which could reproduce your issue
and send it to me?
To reach me, please remove the ONLINE in my email address.
Sincerely,
Wei Lu
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================This posting is provided "AS IS" with no warranties, and confers no rights.|||Hi ,
How is everything going? Please feel free to let me know if you need any
assistance.
Sincerely,
Wei Lu
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================This posting is provided "AS IS" with no warranties, and confers no rights.

Tuesday, February 21, 2012

Report formatting - green-bar effect

I'm trying to apply the green-bar effect to the detail rows in my report but
the alternating colours are not being applied correctly. The report uses a
table with 3 nested groups defined. For discussion purposes I'll call them
Group A, B and C. Group A is the outermost group, Group B is nested within
Group A, and Group C is nested within Group B. My result set is correctly
displayed so that I end up with 12 rows in Group C. However if I check the
number of rows using the RowNumber function, it tells me there are 20 rows
being returned for Group C.
I looked at the result set in SQL Query Analyzer and discovered that there
are 20 rows, but of these only 12 are unique. So I see why the alternating
colours aren't working, but am not sure how to fix it. Any ideas?
Thanks
--
DawnDawn,
The solution below assumes that you don't have much traffic, concurrent
sessions will cause problems.
Regards,
Cem
Shared ColorState as Boolean = True
Shared Function AlternateColor() as Boolean
if ColorState then
ColorState = False
Return False
else
ColorState = True
Return True
end if
End Function
In the report use IIF(Code.AlternateColor(),"Red","Green")
"Dawn" <Dawn@.discussions.microsoft.com> wrote in message
news:CBF95E44-4B54-4B8A-AFB4-3EEAC0D5B3B5@.microsoft.com...
> I'm trying to apply the green-bar effect to the detail rows in my report
> but
> the alternating colours are not being applied correctly. The report uses a
> table with 3 nested groups defined. For discussion purposes I'll call them
> Group A, B and C. Group A is the outermost group, Group B is nested within
> Group A, and Group C is nested within Group B. My result set is correctly
> displayed so that I end up with 12 rows in Group C. However if I check the
> number of rows using the RowNumber function, it tells me there are 20 rows
> being returned for Group C.
> I looked at the result set in SQL Query Analyzer and discovered that there
> are 20 rows, but of these only 12 are unique. So I see why the alternating
> colours aren't working, but am not sure how to fix it. Any ideas?
> Thanks
> --
> Dawn|||Dawn,
Also take a look at this example, it helped me immensely when trying to
accomplish the same thing- it's how to create a Green Bar Matrix
http://blogs.msdn.com/chrishays/archive/2004/08/30/223068.aspx
Bill Youngman
Anexinet, Inc.
"Dawn" <Dawn@.discussions.microsoft.com> wrote in message
news:CBF95E44-4B54-4B8A-AFB4-3EEAC0D5B3B5@.microsoft.com...
> I'm trying to apply the green-bar effect to the detail rows in my report
but
> the alternating colours are not being applied correctly. The report uses a
> table with 3 nested groups defined. For discussion purposes I'll call them
> Group A, B and C. Group A is the outermost group, Group B is nested within
> Group A, and Group C is nested within Group B. My result set is correctly
> displayed so that I end up with 12 rows in Group C. However if I check the
> number of rows using the RowNumber function, it tells me there are 20 rows
> being returned for Group C.
> I looked at the result set in SQL Query Analyzer and discovered that there
> are 20 rows, but of these only 12 are unique. So I see why the alternating
> colours aren't working, but am not sure how to fix it. Any ideas?
> Thanks
> --
> Dawn