Friday, March 30, 2012
How to create Site Map based on Catalog table
I want to create site map with quick access to all reports in my intranet.
I have already static map without links, based on Catalog table and i want
to expand its funcionality by adding dynamic links.
Has someone already solved this problem?
thx5 minutes after sending my question i found solution. Maybe someone will find
it usefull :
all you need is to make the link to URL (using navigation tab) to expresion :
="http://reports.mycompany.com/Reports/Pages/Report.aspx?ItemPath="
+ Fields!Path.Value
that's all - it's working!
How to Create Reports?
We have SQL Server 2000 and I just found out that it comes with Reporting
Services. How do I create reports?
Thanks
RichRead the SQL Server Help File to get started, there are a lot of good
tutorials.
"Rich Morey" <rwmorey71@.hotmail.com> wrote in message
news:uV%23a1doCIHA.1208@.TK2MSFTNGP05.phx.gbl...
> Hi --
> We have SQL Server 2000 and I just found out that it comes with Reporting
> Services. How do I create reports?
> Thanks
> Rich
>
How to create reports dinamically?
program in asp.net in which the user can select the columns he wants to see?
Thanks.Yes of course, unless RDL is a open Language you can stick your parts
together as the User wants. But I would keep in mind that there are already
thrid party tools to do that, therefore looking at these will eventually
save you time and money fordeveloping that on your own.
--
HTH, Jens Suessmeyer.
--
http://www.sqlserver2005.de
--
"Luis Esteban Valencia" <levalencia@.avansoft.com> schrieb im Newsbeitrag
news:OZDxaTydFHA.1684@.TK2MSFTNGP09.phx.gbl...
> Hello. Can I make a report for example with all the columns and make a
> program in asp.net in which the user can select the columns he wants to
> see?
> Thanks.
>|||Your page doesnt work
"Jens Süßmeyer" <Jens@.Remove_this_For_Contacting.sqlserver2005.de> escribió
en el mensaje news:elyDct0dFHA.220@.TK2MSFTNGP12.phx.gbl...
> Yes of course, unless RDL is a open Language you can stick your parts
> together as the User wants. But I would keep in mind that there are
already
> thrid party tools to do that, therefore looking at these will eventually
> save you time and money fordeveloping that on your own.
> --
> HTH, Jens Suessmeyer.
> --
> http://www.sqlserver2005.de
> --
> "Luis Esteban Valencia" <levalencia@.avansoft.com> schrieb im Newsbeitrag
> news:OZDxaTydFHA.1684@.TK2MSFTNGP09.phx.gbl...
> > Hello. Can I make a report for example with all the columns and make a
> > program in asp.net in which the user can select the columns he wants to
> > see?
> >
> > Thanks.
> >
> >
>sql
how to create report without Report wizard
Hi,
Whenever I tried creating reports under-->BUsiness Intelligence Projects-->REport wizard or Report type.Everytime Report wizard opens.What i am trying to say is I want to build manually(Like in crytsal reports).But I don't see any option.One more Question---Once after Designing the table in Report Wizard,like Page fields,Group fields,Diaplay Fields,Is there any option that I can add more fields OR Change Existing fields.Do I have to do in Report designer Layout??I don't see any option for doing in SSRS 2000.Sorry for small questions,I am very new to SSRS2000 ,and programming too.Thank you.
HI,srijyothi:
You can check out this article about:
Generate Ad-hoc Reports with Microsoft Reporting Services 2005
http://www.devx.com/dbzone/Article/28047/1954?pf=true
This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a
convenience to you. Microsoft does not control these sites and has not tested any software or information found on these
sites; therefore, Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or
information found there. There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions
you to make sure that you completely understand the risk before retrieving any software from the Internet.
If i misunderstand you about your question, please feel free to correct me and i will try to help you with more information.
I hope the above information will be helpful. If you have any issues or concerns, please let me know. It's my pleasure to be of assistance
|||HI,srijyothi:
We are marking this issue as "Answered". If you have any new findings or concerns, please feel free to unmark the issue.
Thank you for your understanding!
How to create RDLC?
How does RDLC work? How do I create RDLC reports?
Thanks in advance.
You can find more information about RDLC and the ReportViewer controls here: www.gotreportviewer.com
To answer your question, please read FAQ Nr. 8 on that website:
Q: What is the difference between RDL and RDLC formats?
A: RDL files are created by the SQL Server 2005 version of Report Designer. RDLC files are created by the Visual Studio 2005 version of Report Designer.
RDL and RDLC formats have the same XML schema. However, in RDLC files, some values (such as query text) are allowed to be empty, which means that they are not immediately ready to be published to a Report Server. The missing values can be entered by opening the RDLC file using the SQL Server 2005 version of Report Designer. (You have to rename .rdlc to .rdl first.)
RDL files are fully compatible with the ReportViewer control runtime. However, RDL files do not contain some information that the design-time of the ReportViewer control depends on for automatically generating data-binding code. By manually binding data, RDL files can be used in the ReportViewer control.
Note that the ReportViewer control does not contain any logic for connecting to databases or executing queries. By separating out such logic, the ReportViewer has been made compatible with all data sources, including non-database data sources. However this means that when an RDL file is used by the ReportViewer control, the SQL related information in the RDL file is simply ignored by the control. It is the host application's responsibility to connect to databases, execute queries and supply data to the ReportViewer control in the form of ADO.NET DataTables.
-- Robert
Wednesday, March 28, 2012
how to create parameterised views?
I am using SqlServer2005 and asp.net 2005. I have a large database for which I have to provide reports for it. I need a report that user will specify a date, and the report will be run, from this month & year and I will calculate the first day of the month and the last day of the month and these will serve as the input parameters for a long SELECT query.
For my previous reports i've used views . But for this functionality i need a parameterized view, which i cant create.
Please help me how to create a parameterized view...
Thanks in Advance...
Use a stored procedure.
|||Given a date and if you need to find the first day of the month/last day of the month here's how you can do it.
DECLARE @.DdatetimeSET @.D =getdate()SELECT ,DATEADD(dd, -DATEPART(dd,GETDATE()) + 1,GETDATE())'First day of the month' ,DATEADD(d, -DAY(DATEADD(m,1,@.Date)),DATEADD(m,1,@.Date))AS'Last day of the month'
You can use the same in a view as follows:
SELECTFROM dbo.vwSomeViewWHERE DatecolumnBETWEEN @.begDateAND @.EndDate|||
You can't create a parameterized view. You can create a view and then filter it. Or you can create a table valued function, which is pretty close to a parameterized view.
Monday, March 26, 2012
How to create dynamic reports based on custom business objects?
selected fields from the list of custom business objects.
We would like to offer full data consolidation. Right Crystal offers this
type of functionality but I would like to steer away from that.
Any ideas how to proceed or whether is it even feasible. We do not want to
use reflection on the objects, I mean we can use it but that would not be the
best approach.
ThanksHi Amarnath,
you said SSRS has a new feature using which report builder could be given to
end user to create reports.
Is this Report builder browser based(so that the end user does not need to
install anything) and could design reports and modify the existing reports,
if yes, how to make use of this?
Thanks
Ponnu
"Amarnath" <Amarnath@.discussions.microsoft.com> wrote in message
news:9A2A1500-E374-45F1-8288-56CB8EC97883@.microsoft.com...
> What do you mean by custom BO, is it in the form of dll or assembly sort
> of
> thing then you can always refer the assembly in SS 2005. If it is in the
> form
> of Stored proc then you can always refer that in the report query..
> Infact in RS you need to create a report model and give it to the end
> users,
> SSRS new feature has report builder which is given to the end user to
> create
> their own reports.
>
> Amarnath
>
> "Atul Bahl" wrote:
>> How can we create dynamic reports(or reports created by the end user) by
>> selected fields from the list of custom business objects.
>> We would like to offer full data consolidation. Right Crystal offers this
>> type of functionality but I would like to steer away from that.
>> Any ideas how to proceed or whether is it even feasible. We do not want
>> to
>> use reflection on the objects, I mean we can use it but that would not be
>> the
>> best approach.
>> Thanks
Friday, March 23, 2012
How to create cumulative S-curve?
Hi
I need to make two reports: one containing the Raleigh chart, the other containing a cumulative curve.
In the raleigh report I do this:
Per project I can see the amount of mandays on a timebase(weeks).
For the s-curve (cumulative curve) this needs to happen (and I dont know how):
I need to see the sum of the amount of mandays on a timebase(weeks).
An example:
In raleigh curve: week1 has 20md(mandays), week2 has 30md, week3 has 15md, week4 has 5md
In s-curve the same values should give: week1 has 20md, week2 has 50md(30+20), week3 has 65md(50+15), week4 has 70md (65 + 5)
I tried a sum of a sum but thats not allowed in RS
Anyone who knows how to generate an s-curve (cumulative curve)?
eg. Week 1 = 10 S-Curve Value = 10
Week 2 =
8 S-Curve
Value = 18
Week 3 = 15 S-Curve Value = 33
What you need to do is modify the data for the graph to include the
function "RunningValue". For example, if your value is called
"Mandays", the expression would be:
=RunningValue(Fields!Mandays.Value, Sum, Nothing)
This will give you a running total for each week on the graph and
should allow you to draw a cumulative graph (assuming what I think an
s-curve is, is what an s-curve is!).
More info here.
Regards,
Jon|||
Note: the RunningValue function is only available in charts starting in RS 2005. It is not available in RS 2000 charts.
-- Robert
|||Yes it is RS2005 but it won't work!
I have a field directly retrieved from the sql server called "book_hours"
I make a calculated field on that one to get "book_days" (=book_hours / 7.5)
Then I make another calculated field to go in the data part of the chart called "cumulative_book_days". The expression is RunningValue(Fields!book_days.Value, Sum, Nothing)
From the moment That expression is added (It doesn't even have to be used in the chart), and I build the report, I get the following error:
An internal error occurred on the report server. See the error log for more details.
What is wrong with the expression?
Where can I find the log? (everything runs local and with windows authentication)
C:\Program Files\Microsoft SQL Server\MSSQL.2\Reporting Services\LogFiles
I also get the same
problem as you when trying to define the running value as a calculated
field in the data set. In fact, VS.NET 2k5 crashes.
However, when I define it on the object by an expression, it runs fine.
What I did was define
RunningValue(Fields!book_days.Value,
Sum, "xxxx") in the Values properties of the data tab in the
chart. xxxx is the Category Group giving the scope in which you
want the running value.
You don't seem to be able to use "Nothing" for the scope parameter of
RunningValue as charts have multiple regions of scope, compared to a
standard table (with no groups) that only has it's own scope.
That seemed to work fine for me.
Robert - could this be a bug?
Regards,
Jon
|||
I keep getting an error, even after setting the scope to the category of the chart. I also used a database field as first parameter of the runningvalue function. (no success :s)
I'm gonna try to build the report from scratch again, maybe I overlooked something.
One other thing: the crashes can be avoided by first building the report. In the solution explorer you right-click the report and select 'Build'. Then if you recieve an error "An internal error occurred on the report server. See the error log for more details.", don't go to the preview tabpage of the report because VS2005 will crash!!
I'm a bit confused:
where should the expression RunningValue(Fields!book_days.Value, Sum, "xxxx") go?
Should I make it in a new calculated field in the datasets pane, and then drag it to the Data Field Area of the chart?
OR
Should I drag the book_days field into the Data Field Area of the chart, then click on it and change it expression over there?
Edit: Ok I tried both, the first thing won't work: Adding a RunningValue Expression in a field in the dataset pane makes the report give that internal error.
The second thing also wont work, the RunningValue expression then just gives the same result as the expression =sum(Fields!book_days.Value)
What's going wrong?
Edit2: Oh another thing ... nothing is happening in those logfiles in the path mentioned above. Are there logging properties to be set? So there will be logged more?
|||Thanks for the advice. What error are you getting now, or is it the same?|||It's just the same error :s
I even have set up a small example report to to experiment on that so I can minimize the scope of my problem.
I'll put a zipped solution of it online asap, maybe that will help
|||Option 2 is the way that I got it to work. I can only suggest it could be one of two things:1) The field used in the "Category" (effectively the x axis) section is
causing an issue. Why, I don't know without seeing your report.
2) The scope parameter you have set for the running value doesn't
relate to the category field used. Again, it's a little difficult
for me to comment without seeing the report.
Just to clarify, the book_days field is simply a different result value for
each week?
Assuming you have a dataset like:
Week book_days
1 10
2 8
3 5
4 12
5 2
I'd have thought that specifiying
sum(Fields!book_days.Value) would just give you the same value for each
week (37), where as running value would sum them up for each week across the
x-axis(eg. 10, 18, 23, 35, 37).
Excuse the next post, I posted before I'd realised you'd replied.|||
Ok I made a small testsolution, hopefully somebody can find the time to look at it!
Location: http://users.telenet.be/master/CumulativeChart.zip
The shared datasource is set up with the following connection string: Data Source=localhost;Initial Catalog=master, but no tables are used in the database, the queries of the reports generate their own data.
There are 3 reports in the Solution:
Raleigh.rdl: This report shows a raleigh curve of the data (mandays on time)|||
Btw, if you are looking for a moving average in a chart, you may want to read this thread: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=488875&SiteID=1
At the end of that thread I posted an example of how you can do this with the builtin charts of Reporting Services.
-- Robert
|||All thanks for your comments, and Robert, thanks for the example ... it showed me what I was doing wrong.
I was grouping on the Category group, but since that each week is another value, the runningValue starts from scratch again each different group.
So the only thing I needed to do was setting the scope parameter to the Series group. Because I am showing the Mandays on a timebase per contract (= the series group), there is only 1 contract, so the group never changes, so the runningValue is never reset.
Now my graph finally looks like an S! ![]()
I thought it had to be scoping issue! I just couldn't work out where.
I must admit, I struggled to get round it without checking Roberts
sample. I ended up "falsifying" a series group by grouping on a
fixed value (1, in this case) and then using that as the scope of the running
value function.
Robert - I've been trying to find a document that details scope within
reporting services. I know it's a common theory, but I'd like one
that's tailored to RS. All the sources I've seen seem a little
flakey. Do you have any suggestions of where I can find one?
Regards,
Jon|||
I'm the author of an upcoming MSDN article that will explain the moving average example (and several other new advanced samples) in detail. Particularly, I will also explain using RunningValues in charts and how to setup the scopes correctly. But I guess the article won't be published until August/Sept or so.
In general a scope is a dataset name, a data region name (list, table, matrix, chart, custom report item), or a group name within a data region.
I think the key here is to understand that in the RunningValue function, the scope is needed to determine when to "reset" the running value. In a list or table there is only one direction for the running value, hence you can use Nothing as a reset scope (meaning: never reset the running value).
In a matrix and a chart you have two running value directions (matrix: horizontal or vertical, chart: categories or series). Hence, you have to specify a grouping scope inside the matrix or the chart to identify the running value direction.
For aggregations however (such as Sum, Avg, etc.), the scope determines how much data you want to aggregate.
-- Robert
How to create charts and graphs on reports?
Hi to all,
I am newbie to Reporting Services technology
I am trying to develop some reports in Reporting Services using Visual Studio Management Express.
Is there a way to create some charts and graphs inside a report?
Have I to use Report Builder?
Thanks a lot
Bye
Sure, it's quite simple actually. The trick is to get the right SQL query.
Personally, I wouldn't use report builder.
Here are the steps:
1. Create a Report Server Project from Business Intelligence Studio
2. Add a new report to the project. This can be done by opening solution explorer (View -> solution explorer). Next, right click the name of your project then Add -> New Item. Click on Report then click OK.
3. On the Data tab, you want to create a new dataset and form your SQL statement there. This can be a stored procedure or textual.
4. From the toolbox (view -> toolbox), drag and drop a chart to the grid area of the layout tab.
5. Now, you can select the type of chart and play with whatever kind of formatting you want the chart or graph to have.
6. The important thing to do next is click view -> datasets. You want to drag and drop the field(s) to the Y or X-axis as appropriate.
If you have any more questions, let us know but that should get you started.
|||
Thanks for the reply.
I will try and I will post here news about develop
thanks a lot
bye
How to create and combine 4 reports, one being a total off fields from the other 3 ?
1) How do I add 4 reports to the same report so that I end up with 4 Excel tabs?
2) How can I relate a 4th report to be a summary report of all 3 other reports in the same rdl?
My Excel file in the end will have 4 sheets. 3 of them will be reports, and the final will be a summary table that sums up certain fields based off the other 3 reports. I am not sure the approach to both create the 4 reports together, then ensure pageination is correct in that I end up wtih 4 sheets in an excel workbook when doing an export in the end. You gave a great explanation but now I have more questions :)
Please also reference: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=233219&SiteID=1&mode=1
I responded on the original thread:
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=233219&SiteID=1&mode=1
Monday, March 19, 2012
How to create a PopUp Report
No I m not looking for a drill down report.
I want a hiperlink on my country sales reports. When user will click on this hiperlink one popup window will open(Popup report). This popup report will contain some input parameter eg list box of sales person name and list of country to be selected select.
One user will select country germany and sales person as Mr Bin and click go on the poup report I want the popup report to be closed and based on the input(country germany and sales person as Mr Bin ) want my country sales reports to get updated.
Hope you undestand my qn.
thanks
Novin
You should be able to achieve this, except the popup would not be a report. It would need to be some custom html page that collects user input and then submits it to opener page with the selection.
To navigate to the popup:
In your report add a textbox with an action of "Jump to URL" and set this to
javascript:window.open()
OR
javascript:window.showModalDialog()
To pass parameters from the popup:
Call a javascript function onclick of the submit button that does something like
Code Snippet
function loadReport(param1)
{
window.opener.location.href = opener.location.href + "¶m1=" + param1;
window.opener.focus();
window.close();
}
I've not tried this but theoretically it should work.
|||Hi Adam,Thanks a lot for your kind and quick reply.
I will try this out. One qn. then the popup page(which must not be a report) need to be a php or JSP page which will have some database connection code and it will fill the input parameters listboxes.
Correct me if I am wrong and also suggest me the popup page implementation bcas I m new to microsoft technologies.
Thanks
Novin
|||
You are in control of the popup and it's implementation is totally up to you as long as your web server can handle it. Possible options are:
static html with hard coded lists of options
dynamic webpage, the technology is immaterial but you're likely to get better integration using ASP.NET 2.0
parametrs could be queried directly from database tables
OR you can connect to the RS web service and use the queries and connections defined within the report RDL to retrieve a collection of ValidValues (recommended)
|||Hi Adam,As per your explaination it looks possible to me.
But I have one more doubt regarding the parameter passing to the parent report from the popup report and auto refreshing the parent report.
Using following code I can pass the selectede parameters back to the detail report but I want that detail report be get refreshed(hit the dabase and re executing the report sql) without user intervantion with new parameters. Is that possible or the user need to manually again click the some controll to get the new data with passed parameters from the popup page.
function loadReport(param1)
{
window.opener.location.href = opener.location.href + "¶m1=" + param1;
window.opener.focus();
window.close();
}
Thanks
Novin
|||
Whenever you change the value of location.href in javascript IE automatiacally posts back. This would be driven from the javascript and no user intervention is required.
How to create a PopUp Report
No I m not looking for a drill down report.
I want a hiperlink on my country sales reports. When user will click on this hiperlink one popup window will open(Popup report). This popup report will contain some input parameter eg list box of sales person name and list of country to be selected select.
One user will select country germany and sales person as Mr Bin and click go on the poup report I want the popup report to be closed and based on the input(country germany and sales person as Mr Bin ) want my country sales reports to get updated.
Hope you undestand my qn.
thanks
Novin
You should be able to achieve this, except the popup would not be a report. It would need to be some custom html page that collects user input and then submits it to opener page with the selection.
To navigate to the popup:
In your report add a textbox with an action of "Jump to URL" and set this to
javascript:window.open()
OR
javascript:window.showModalDialog()
To pass parameters from the popup:
Call a javascript function onclick of the submit button that does something like
Code Snippet
function loadReport(param1)
{
window.opener.location.href = opener.location.href + "¶m1=" + param1;
window.opener.focus();
window.close();
}
I've not tried this but theoretically it should work.
|||Hi Adam,Thanks a lot for your kind and quick reply.
I will try this out. One qn. then the popup page(which must not be a report) need to be a php or JSP page which will have some database connection code and it will fill the input parameters listboxes.
Correct me if I am wrong and also suggest me the popup page implementation bcas I m new to microsoft technologies.
Thanks
Novin
|||
You are in control of the popup and it's implementation is totally up to you as long as your web server can handle it. Possible options are:
static html with hard coded lists of options
dynamic webpage, the technology is immaterial but you're likely to get better integration using ASP.NET 2.0
parametrs could be queried directly from database tables
OR you can connect to the RS web service and use the queries and connections defined within the report RDL to retrieve a collection of ValidValues (recommended)
|||Hi Adam,As per your explaination it looks possible to me.
But I have one more doubt regarding the parameter passing to the parent report from the popup report and auto refreshing the parent report.
Using following code I can pass the selectede parameters back to the detail report but I want that detail report be get refreshed(hit the dabase and re executing the report sql) without user intervantion with new parameters. Is that possible or the user need to manually again click the some controll to get the new data with passed parameters from the popup page.
function loadReport(param1)
{
window.opener.location.href = opener.location.href + "¶m1=" + param1;
window.opener.focus();
window.close();
}
Thanks
Novin
|||
Whenever you change the value of location.href in javascript IE automatiacally posts back. This would be driven from the javascript and no user intervention is required.
How to create a PopUp Report
No I m not looking for a drill down report.
I want a hiperlink on my country sales reports. When user will click on this hiperlink one popup window will open(Popup report). This popup report will contain some input parameter eg list box of sales person name and list of country to be selected select.
One user will select country germany and sales person as Mr Bin and click go on the poup report I want the popup report to be closed and based on the input(country germany and sales person as Mr Bin ) want my country sales reports to get updated.
Hope you undestand my qn.
thanks
Novin
You should be able to achieve this, except the popup would not be a report. It would need to be some custom html page that collects user input and then submits it to opener page with the selection.
To navigate to the popup:
In your report add a textbox with an action of "Jump to URL" and set this to
javascript:window.open()
OR
javascript:window.showModalDialog()
To pass parameters from the popup:
Call a javascript function onclick of the submit button that does something like
Code Snippet
function loadReport(param1)
{
window.opener.location.href = opener.location.href + "¶m1=" + param1;
window.opener.focus();
window.close();
}
I've not tried this but theoretically it should work.
|||Hi Adam,Thanks a lot for your kind and quick reply.
I will try this out. One qn. then the popup page(which must not be a report) need to be a php or JSP page which will have some database connection code and it will fill the input parameters listboxes.
Correct me if I am wrong and also suggest me the popup page implementation bcas I m new to microsoft technologies.
Thanks
Novin
|||
You are in control of the popup and it's implementation is totally up to you as long as your web server can handle it. Possible options are:
static html with hard coded lists of options
dynamic webpage, the technology is immaterial but you're likely to get better integration using ASP.NET 2.0
parametrs could be queried directly from database tables
OR you can connect to the RS web service and use the queries and connections defined within the report RDL to retrieve a collection of ValidValues (recommended)
|||Hi Adam,As per your explaination it looks possible to me.
But I have one more doubt regarding the parameter passing to the parent report from the popup report and auto refreshing the parent report.
Using following code I can pass the selectede parameters back to the detail report but I want that detail report be get refreshed(hit the dabase and re executing the report sql) without user intervantion with new parameters. Is that possible or the user need to manually again click the some controll to get the new data with passed parameters from the popup page.
function loadReport(param1)
{
window.opener.location.href = opener.location.href + "¶m1=" + param1;
window.opener.focus();
window.close();
}
Thanks
Novin
|||
Whenever you change the value of location.href in javascript IE automatiacally posts back. This would be driven from the javascript and no user intervention is required.
Monday, March 12, 2012
how to create a landscape report?
Thank you,
SantanaClick on File pull down menu, click Printer Setup, in lower right orientation portion choose landscape|||Thank you,
Santana
How to create a group acct in reports manager just for browsing
How to create a group acct for just browsing the reports, this acct.
reports are hosted on internet and now would like to give the access to all users,
would like to use the same group acct. for all users.
when ever i try to access reports, i have to provide a windows uername and password. the same reports which are on an intranet environment does'nt ask for username and password. it seems like internet report site will ask for username and password and does'nt want to share the admin username and password.
Thank you all for the information.
Hi,
seems that the internet representation does not use integrated authentication. Therefore you will have to provide the credentials for connecting. What do you want to achieve within your solution ?
So, you want to let the user enter their individual credentials at the internet representation (then you will have to use Basic authentication or a certificate solution) or you you want to authenticate them with a generic user (then you will have to create a website / Virtual directory (this depends on your design) and configure the security for this directory indivudally to anonymous access. Provide the user account which will be impersonated for the accessing users in the settings of IIS)
HTH, Jens K. Suessmeyer.
http://www.sqlserver2005.de
Friday, March 9, 2012
How to create a datasource which Connection type is SQL Server Anlysis Service in rss script?
I am making a rss script to deploy the reports and datasources.
I need to create a datasource which Connection type is SQL Server Anlysis Service. Thanks.
I assume this has already been resolved but for anyone else;
Create a Datasouce in VS (or BIDS) of the Connection Type that you require and then open up the resulting .rds to
view the resulting connection type code.
i.e. For Analysis Services Connection Types
<Extension>OLEDB-MD</Extension> = Extension Code is "OLEDB-MD"
How to create a datasource which Connection type is SQL Server Anlysis Service in rss script?
I am making a rss script to deploy the reports and datasources.
I need to create a datasource which Connection type is SQL Server Anlysis Service. Thanks.
I assume this has already been resolved but for anyone else;
Create a Datasouce in VS (or BIDS) of the Connection Type that you require and then open up the resulting .rds to
view the resulting connection type code.
i.e. For Analysis Services Connection Types
<Extension>OLEDB-MD</Extension> = Extension Code is "OLEDB-MD"
How to create a cover page
This seems like it should be a very simple task. I need to create a cover page that appears as the first page of all my reports. It contains a confidentiality statement and I don't want any other report information on this page. I created the cover page in a separate report to be used as a subreport in any report that needs the statement included. However, I have searched all over the Web (including this forum) but cannot find any info on how to actually create a cover page. Is this even possible with RS?
Thanks,
Jesse
You can just create a report with no datasets, just static textboxes for the confidentiality text, and use it as the subreport. Are there any other specific things you are looking for?|||Well, yes. I planned on using it as a subreport. Its just a matter of how to place the subreport on the other reports. Won't the subreport appear on all the other pages of the report.
I guess my actual question is how do I make content appear on first page only and have nothing else on the first page (in effect, a cover page)?
|||You can put the sub-report outside any list,table or matrix - controls at top of the content-pane (maybe the name is "textcontent" in en-version), so it just shows at the beginning of the report. setting "page break at end" for the subreport will take care that only your sub-report cover-page is on the first page..|||
Yep, that did the trick. Thanks.
Jesse
How to create a button in Reports
I am using reports 10g.In the Run time parameter form after given the
values for the parameters, i want to click a button so that the report
can run. we already have an option in the menu bar of the Run time
parameter form to run the report but our customers specfically needs
the button option. So how to create a Button in the Run time parameter
form?
Can anyone please help me on this,
Thanks
Balaji.On Nov 6, 12:27 am, rampal...@.gmail.com wrote:
> Hello every one,
> I am using reports 10g.In the Run time parameter form after given the
> values for the parameters, i want to click a button so that the report
> can run. we already have an option in the menu bar of the Run time
> parameter form to run the report but our customers specfically needs
> the button option. So how to create a Button in the Run time parameter
> form?
> Can anyone please help me on this,
> Thanks
> Balaji.
If you want to mix HTML Forms with ReportingServices Reports, I
suggest using ASP.NET. This way:
1. the page renders on your IIS server and is callable from a URL
2. you can have an HTML form with Inputs & Submit button
3. the Submit posts back to the IIS server which returns a page with
a RS Object rendered as an IFRAME in the HTML (ReportViewer I think it
is called)
4. The IIS takes the parameters from the URL using Request objects,
then passes those as Parameters to the ReportViewer object, which then
calls the Reporting Services RDL file, which renders in the web page.
Down side is that the report cannot be deployed to the Reporting
Services Server, but can be Navigated to via a URL to the ASP.NET
folder on your web server.
-- Scott
Sunday, February 19, 2012
How to copy reports to different servers
Hi,
Once a report is deployed to a specific server (server A), is there a way to "copy" it to a different server (servers B, C), without having to actually deploy it server by server?
In my case, I am trying to have the developers deploy the reports on the development server first (server A), and then manually or automatically copy them to a Preview server (server B), and later to a production server (server C). I cannot grant the developers full permissions on the production server, so a "copy" is what I'm thinking about....
Thanks in advance for any ideas.
Edwin.
Create one Solution file and add 3 reporting project files to it with different deployment locations. That will allow your devs to test and publish reports to your dev & preview enviroments, as well as copy reports to the production project so that someone with publishing rights to your prod server can deploy them.
Remeber to practice safe source!
|||You can always try Reporting Services Scripter at http://www.sqldbatips.com/Or you can write some code for yourself either by copying reports from server A to B using the RS webservice, or a program that takes your rdl files and deploys it to all the servers.Check out "rs utility" and "ReportingService2005 class" in Books-OnLine. I can create a small code sample for you if you want to.|||
Right-click on the solution in Solution Explorer -> Properties
You can setup multiple configuration, each with different settings for
TargetDataSourceFolder
TargetReportFolder
TargetServerURL
Default configurations include
Active(Debug)
Debug
Debug(local)
Production
Funny thing is, I just noticed this today, as I used to change the TargetReportFolder a few times within the same solution, so thanks for asking