Wednesday, March 21, 2012
Problem with HTML rendering
I'm facing a problem when i render a report in HTML format.
When i see the report in the preview section of the report designer it
is perfect as desired.
After deployment, when i export the report in HTML format there are a
lot of white spaces inserted vertically. But it doesn't happen when it
is exported in PDF format.
Please suggest some methods to overcome this problem.
Thanks in advance
PrathimaTry to place your report elements and regions in rectangles to keep them
together.
--
Hope this helps.
---
Teo Lachev, MVP [SQL Server], MCSD, MCT
Author: "Microsoft Reporting Services in Action"
Publisher website: http://www.manning.com/lachev
Buy it from Amazon.com: http://shrinkster.com/eq
Home page and blog: http://www.prologika.com/
---
"Prathima" <prathima.chandramouli@.gmail.com> wrote in message
news:f941b84.0411010245.4e3e8a9@.posting.google.com...
> Hi
> I'm facing a problem when i render a report in HTML format.
> When i see the report in the preview section of the report designer it
> is perfect as desired.
> After deployment, when i export the report in HTML format there are a
> lot of white spaces inserted vertically. But it doesn't happen when it
> is exported in PDF format.
> Please suggest some methods to overcome this problem.
> Thanks in advance
> Prathima
Wednesday, March 7, 2012
problem with drilldown (ReportServer)
i have a problem with the drilldown functionality of my report:
in the preview pane in VS2005 everything works fine but when I try to execute the report on reportserver the only thing I see is the top level and I'm not able to drilldown into lower levels ...
anyone has an idea?
Idid not implement the drilldown in mdx statement but used grouping & toggle item in VS2005. could that be the reason?
thanks,
rhpasy
Check the supported versions for different web browsers. Static reports is the version supported in older browsers.
Also add the reportserver/manager to the local intranet zone or trusted site(if you use Internet Explorer).
Regards
Thomas Ivarsson
Saturday, February 25, 2012
problem with DateTime picker
I've just created a new report and I added a prameter of type "DateTime".
I didn't even used it in the query.
Whan I preview the report I have the small calendar Icon.
after I pick a time from the picker And press "View Report"
I get the error:
"the value provided for the report parameter P1 is not valid for its type"
I'm using RS 2005.
Any body know whats the problem?
Thanks in advance,
Roy.
Does this happen for any DateTime you pick, or only certain ones?
Can you type in a Date, say, "1/1/2005" and successfully render the report?
Does the same thing happen when you publish the report and view it in Report Manager?
|||Hi Mike.I think I know whats the problem.
Whan I run it an my local Pc its take the date in a diffrent format.
Whan I choose 1 in february I get in the box 2/1/2007.
instead of 1/2/2007 like it should be since I'm with hebrew settings.
So the problem is that if I choose 13 in february I get it as 2/13/2007 whice give the error since there is no 13 month!
Any way, when I deploy it to the server It was Ok from some reason.
So Its look like a little bug of yours.
Thank for the replay,
Roy.
problem with dateTime picker
I've just created a new report and I added a prameter of type
"DateTime".
I didn't even used it in the query.
Whan I preview the report I have the small calendar Icon.
after I pick a time from the picker and press "View Report"
I get the error:
"the value provided for the report parameter P1 is not valid for its
type"
I'm using RS 2005.
Any body know whats the problem?
Thanks in advance,
Roy.On 15 Feb, 08:30, "nicknack" <roezo...@.gmail.com> wrote:
> Hello.
> I've just created a new report and I added a prameter of type
> "DateTime".
> I didn't even used it in the query.
> Whan I preview the report I have the small calendar Icon.
> after I pick a time from the picker and press "View Report"
> I get the error:
> "the value provided for the report parameter P1 is not valid for its
> type"
> I'm using RS 2005.
> Any body know whats the problem?
> Thanks in advance,
> Roy.
Hi Roy I had this too and it was the date format that the picker was
sending to the dataset query.
I got around it by formatting the datepicker value to be the same as
the sql table date format ie
I hope it works out for you.
SELECT loaddate ,*
FROM tbl_T
WHERE convert(varchar(12),tbl_T.loaddate,103) LIKE
convert(varchar(12), (@.LoadDate),103)|||Hi Caseywill,
Thanks, I also discover that I have a problem with the format.
Whan I choose 1/2/07 which should be the 1 in february I get in the
textbox 2/1/2007.
So when I choose 13/2/2007 which should be the 13 in february I get
2/13/2007 which give the error since it looks for the 13 month (I have
hebrew date settings).
I don't know how to fix it since the datepicker doesn't choose its
date from a query.
Any way, When I deploy it It seeems to be ok and only on local pc it
give me some problems.
Thanks for your replay.
caseywill67@.googlemail.com =D7=9B=D7=AA=D7=91:
> On 15 Feb, 08:30, "nicknack" <roezo...@.gmail.com> wrote:
> > Hello.
> > I've just created a new report and I added a prameter of type
> > "DateTime".
> > I didn't even used it in the query.
> > Whan I preview the report I have the small calendar Icon.
> > after I pick a time from the picker and press "View Report"
> > I get the error:
> > "the value provided for the report parameter P1 is not valid for its
> > type"
> >
> > I'm using RS 2005.
> >
> > Any body know whats the problem?
> >
> > Thanks in advance,
> > Roy.
> Hi Roy I had this too and it was the date format that the picker was
> sending to the dataset query.
> I got around it by formatting the datepicker value to be the same as
> the sql table date format ie
> I hope it works out for you.
> SELECT loaddate ,*
> FROM tbl_T
> WHERE convert(varchar(12),tbl_T.loaddate,103) LIKE
> convert(varchar(12), (@.LoadDate),103)