Showing posts with label based. Show all posts
Showing posts with label based. Show all posts

Wednesday, March 28, 2012

Reporting Services 2005 textbox with html?

Hi,

Is it possible to insert html into a text control?

I have some records containing html that are saved using a website based on a richText html editor...

How can i send the html to the textbox so that it would render like it is desired?

If by any reason i cannot use html how can i at least specify line breaks and feeds?

Best Regards,

LS

Hi,

no you can′t use HTML here. It was always on the roadmap but not implemented yet.

HTH, Jens K. Suessmeyer.

http://www.sqlserver2005.de

sql

Reporting Services 2005 textbox with html?

Hi,

Is it possible to insert html into a text control?

I have some records containing html that are saved using a website based on a richText html editor...

How can i send the html to the textbox so that it would render like it is desired?

If by any reason i cannot use html how can i at least specify line breaks and feeds?

Best Regards,

LS

Hi,

no you can′t use HTML here. It was always on the roadmap but not implemented yet.

HTH, Jens K. Suessmeyer.

http://www.sqlserver2005.de

Reporting Services 2005 report in Outlook 2007

I have a Reporting Services 2005 report that is emailed to users. I
created/formatted the report based on how it looked in Outlook 2003 which
all of our users had at that time. The report is wide, but just fit in the
email window when it was full size. Now I have a user who has been
converted to Outlook 2007 and he emailed me a copy of the report he received
in Outlook 2007 and it looks like it reduced the column sizes; it does not
fill the entire email window and wraps the wording on most lines because the
column sizes have been reduced.
The report is:
Delivered by: Report Server E-mail
Include Report is checked
Render Format is Web archive
Any ideas on how I can fix this?
Thanks in advance.
--
DJansonOn Feb 9, 12:50 pm, DJanson <DJan...@.discussions.microsoft.com> wrote:
> I have a Reporting Services 2005 report that is emailed to users. I
> created/formatted the report based on how it looked in Outlook 2003 which
> all of our users had at that time. The report is wide, but just fit in theemailwindow when it was full size. Now I have a user who has been
> converted to Outlook 2007 and he emailed me a copy of the report he received
> in Outlook 2007 and it looks like it reduced thecolumnsizes; it does not
> fill the entireemailwindow and wraps the wording on most lines because thecolumnsizes have been reduced.
> The report is:
> Delivered by: Report ServerE-mail
> Include Report is checked
> Render Format isWebarchive
> Any ideas on how I can fix this?
> Thanks in advance.
> --
> DJanson
I am having the same issue, but I do not have a solution.|||On Mar 15, 1:13 am, mjcarrab...@.gmail.com wrote:
> On Feb 9, 12:50 pm, DJanson <DJan...@.discussions.microsoft.com> wrote:
>
>
> > I have a Reporting Services 2005 report that is emailed to users. I
> > created/formatted the report based on how it looked inOutlook2003 which
> > all of our users had at that time. The report is wide, but just fit in theemailwindow when it was full size. Now I have a user who has been
> > converted toOutlook2007 and he emailed me a copy of the report he received
> > inOutlook2007 and it looks like it reduced thecolumnsizes; it does not
> > fill the entireemailwindow and wraps the wording on most lines because thecolumnsizes have been reduced.
> > The report is:
> > Delivered by: Report ServerE-mail
> > Include Report is checked
> > Render Format isWebarchive
> > Any ideas on how I can fix this?
> > Thanks in advance.
> > --
> > DJanson
> I am having the same issue, but I do not have a solution.- Hide quoted text -
> - Show quoted text -
Does anyone have a fix for this? My report is squished to one narrow
column in Outlook 2007, but renders fine when viewed in Outlook 2003.
Thanks.
-Joe|||I have the same problem is driving me mad. I have a half fix by adding
a long transparent gif image into the report. This makes the table
bigger. Bear in mind that the actual image file needs to be the right
size, you can't just resize it in Visual Studio.
Problem is that if the report runs to 2 pages the second page gets
squished again because the image is at the top :(
Please help!|||Apparently, us five are not the only ones having this issue. Someone reported
it to MS Feedback. Microsoft's typical response: "We are currently
investigating this issue." and the item is marked as "Closed".
How does Microsoft re-define "Closed" to mean they are currently looking
into the issue? They must have some GREAT pull with the folks over at
Wikipedia!
--
Todd C

Friday, March 23, 2012

Reporting Services 2000 Filtering based on a text parameter

I've looked through the reporting services help and it's very vague on how to do this.

What I want to do is set up a prompt with three values; Open, Closed, and Due for Completion.

Based on the user selection then a filter will be inserted, something like:If the user selects "Open" then Datatable.Status not in ('Closed', 'Cancelled', 'On Hold'), if the user selects "Closed" then Datatable.Status in ('Closed', 'Cancelled', 'On Hold'), if the user selects "Due for Completion" then Datatable.Completion date > getDate()-14.

In the Report Parameters screen there is a Value column for each label, but I haven't been able to work out how that value can be inserted into the where statement.

Thanks,

Bruce

Just use the parameter name you setup in the parameter dialog and insert it into SQL statement as @.ParameterName.

You can try the 'Multi-value ' option if want to allow user choose more then one values.

|||

OK here goes...

I've created a parameter in layout called Report_Type, and I've setup the following available values...

Label Value

Open requests.[Work Request Status] NOT IN ('Completed', 'Cancelled', 'Business Hold')

Closed requests.[Work Request Status] IN ('Completed', 'Cancelled', 'Business Hold')

Due For Completion requests.[Required By] > (getDate()-14)

Now I add a where statement to the SQL that reads "WHERE @.Report_Type"

The error I get is "syntax error or access violation".

Where am I going wrong?

Thanks.

Wednesday, March 21, 2012

Reporting Services - use of temp tables

Hello all,

I need to create a report based on a stored procedure. This stored procedure contains temp tables. At the time of creating the report, I receive a message mentioning - There is an error in the query. Invalid object name '<temp table name'>

Doesn't Reporting Services support temp tables?

Thanks all,
SauravYou can use temporary tables. I tend to do it like...

-- Create temporary tables
declare @.MyTempTable table
(
field1 int,
field2 smalldatetime,
field3 int,
field4 smallint
)

You can then use @.MyTempTable for your SP.

Hope that helps.sql

Tuesday, February 21, 2012

Reporting on a dynamic recordset

I have my first project with reporting services - 2000 not 2005 and the very
first report that I have to generate is based on a dynamic pivot of an SQL
table.
This means at design time, I don't know how many columns there is going to
be - it will vary quite a lot depending on date ranges and time of year and
so on.
Is there any way to create a report at run time using code? - C# preferably
Thanks for any helpCould you use a matrix control? This allows you to have a variable number of
columns.
HTH,
Magendo_man
"ElijaTheGold" wrote:
> I have my first project with reporting services - 2000 not 2005 and the very
> first report that I have to generate is based on a dynamic pivot of an SQL
> table.
> This means at design time, I don't know how many columns there is going to
> be - it will vary quite a lot depending on date ranges and time of year and
> so on.
> Is there any way to create a report at run time using code? - C# preferably
> Thanks for any help|||But what if I don't know what the columns are going to be until the report is
run?
Can a Matrix do that - I couldn't find anything to say it could
"magendo_man" wrote:
> Could you use a matrix control? This allows you to have a variable number of
> columns.
> HTH,
> Magendo_man
> "ElijaTheGold" wrote:
> > I have my first project with reporting services - 2000 not 2005 and the very
> > first report that I have to generate is based on a dynamic pivot of an SQL
> > table.
> >
> > This means at design time, I don't know how many columns there is going to
> > be - it will vary quite a lot depending on date ranges and time of year and
> > so on.
> >
> > Is there any way to create a report at run time using code? - C# preferably
> >
> > Thanks for any help|||I achieved this in a report I was working on today by introducing a field
called ColumnNo in the stored procedure on which my report dataset is
introduced. This allowed me to have as many columns as required depending on
the reports parameters and the underlying data.
HTH,
Magendo_man
"ElijaTheGold" wrote:
> But what if I don't know what the columns are going to be until the report is
> run?
> Can a Matrix do that - I couldn't find anything to say it could
> "magendo_man" wrote:
> > Could you use a matrix control? This allows you to have a variable number of
> > columns.
> >
> > HTH,
> > Magendo_man
> >
> > "ElijaTheGold" wrote:
> >
> > > I have my first project with reporting services - 2000 not 2005 and the very
> > > first report that I have to generate is based on a dynamic pivot of an SQL
> > > table.
> > >
> > > This means at design time, I don't know how many columns there is going to
> > > be - it will vary quite a lot depending on date ranges and time of year and
> > > so on.
> > >
> > > Is there any way to create a report at run time using code? - C# preferably
> > >
> > > Thanks for any help|||Thanks - I'll have a look into it and see how it goes.
I may be back ;)
"magendo_man" wrote:
> I achieved this in a report I was working on today by introducing a field
> called ColumnNo in the stored procedure on which my report dataset is
> introduced. This allowed me to have as many columns as required depending on
> the reports parameters and the underlying data.
> HTH,
> Magendo_man
> "ElijaTheGold" wrote:
> > But what if I don't know what the columns are going to be until the report is
> > run?
> > Can a Matrix do that - I couldn't find anything to say it could
> >
> > "magendo_man" wrote:
> >
> > > Could you use a matrix control? This allows you to have a variable number of
> > > columns.
> > >
> > > HTH,
> > > Magendo_man
> > >
> > > "ElijaTheGold" wrote:
> > >
> > > > I have my first project with reporting services - 2000 not 2005 and the very
> > > > first report that I have to generate is based on a dynamic pivot of an SQL
> > > > table.
> > > >
> > > > This means at design time, I don't know how many columns there is going to
> > > > be - it will vary quite a lot depending on date ranges and time of year and
> > > > so on.
> > > >
> > > > Is there any way to create a report at run time using code? - C# preferably
> > > >
> > > > Thanks for any help