Crystal Reports - Drill Down Lost
Dec 1, 2006
I've been able to insert a graph in my reports which automatically allow drill down (into the graph). This has stopped working on new reports and I can't see why, or how to allow drill down (in graphs) again. Anyone help? I'm using Crystal Developer Ver9.2. Thanks
View 1 Replies
ADVERTISEMENT
Dec 12, 2006
Hi there,
I'm using the reportviewer control to display a drill-through serverreport. Here is the code in my code-behind file:
Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
Dim strReportPath As String = "/Public Reports/adfront/dealermodel/myreportname"
Dim paramUniqueID As New ReportParameter()
If Not Page.IsPostBack And Me.ReportViewer1.ServerReport.IsDrillthroughReport = False Then
Session("uniqueid") = Request.QueryString("uniqueid").ToString
'Set the report server URL and report path
Me.ReportViewer1.ServerReport.ReportServerUrl = New Uri("http://localhost/reportserver")
Me.ReportViewer1.ServerReport.ReportPath = strReportPath
Me.ReportViewer1.SizeToReportContent = True
Me.ReportViewer1.AsyncRendering = False
Me.ReportViewer1.ShowBackButton = True
Me.ReportViewer1.ShowFindControls = False
Me.ReportViewer1.ShowPageNavigationControls = False
Me.ReportViewer1.ShowParameterPrompts = False
Me.ReportViewer1.ShowPromptAreaButton = False
Me.ReportViewer1.ShowZoomControl = True
Me.ReportViewer1.ZoomMode = ZoomMode.FullPage
'Set the processing mode for the ReportViewer to Remote
Me.ReportViewer1.ProcessingMode = ProcessingMode.Remote
'Set the report parameters for the report
paramUniqueID.Name = "uniqueid"
paramUniqueID.Values.Add(Session("uniqueid"))
Dim parameters() As ReportParameter = {paramUniqueID}
Me.ReportViewer1.ServerReport.SetParameters(parameters)
End If
Me.ReportViewer1.ServerReport.Refresh()
End Sub
Protected Sub ReportViewer1_Drillthrough(ByVal sender As Object, ByVal e As Microsoft.Reporting.WebForms.DrillthroughEventArgs) Handles ReportViewer1.Drillthrough
While (Me.ReportViewer1.ServerReport.IsDrillthroughReport)
Me.ReportViewer1.PerformBack()
End While
'Me.ReportViewer1.ServerReport.ReportPath = e.ReportPath
'Me.ReportViewer1.ServerReport.GetParameters()
Me.Label1.Text = Me.ReportViewer1.ServerReport.ReportPath
End Sub
When I drill-through the report and hit the (browser) back button and try to drill-trough again I get the following error:
The path of the item "(null)" is not valid. The path must be less than 260 characters long and must start with slash. Other restrictions apply. (rsInvalidItemPath)
When I hit back again and try to export the report to eg. PDF, I get this error:
Execution 'mly2yj555oen0o45oowe1e55' cannot be found
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Exception: Execution 'mly2yj555oen0o45oowe1e55' cannot be found
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[Exception: Execution 'mly2yj555oen0o45oowe1e55' cannot be found]
Microsoft.Reporting.WebForms.ServerReport.ServerUrlRequest(Boolean isAbortable, String url, Stream outputStream, String& mimeType, String& fileNameExtension) +553
Microsoft.Reporting.WebForms.ServerReport.InternalRender(Boolean isAbortable, String format, String deviceInfo, NameValueCollection urlAccessParameters, Stream reportStream, String& mimeType, String& fileNameExtension) +941
Microsoft.Reporting.WebForms.ServerReport.Render(String format, String deviceInfo, NameValueCollection urlAccessParameters, String& mimeType, String& fileNameExtension) +97
Microsoft.Reporting.WebForms.ServerReportControlSource.RenderReport(String format, String deviceInfo, NameValueCollection additionalParams, String& mimeType, String& fileExtension) +126
Microsoft.Reporting.WebForms.ExportOperation.PerformOperation(NameValueCollection urlQuery, HttpResponse response) +153
Microsoft.Reporting.WebForms.HttpHandler.ProcessRequest(HttpContext context) +202
System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +154
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +64
Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.210
It looks like my executionid is lost on the reportserver. Does anybody knows how to fix this, so my users can use the browser back button?
Many thanx!
Ralph
View 1 Replies
View Related
Nov 5, 2007
Hello SQL Server Experts, Data Analysts, and Report Writers et al:
re: Reporting Options with SQL Server
I wanted to propose an offshoot to the pryor thread:
Would anyone take a stab at comparing Access Reports, Crystal Reports,
Cognos or other options to all the Reporting Services and its components offered as part ofSQL Server, especially as to extracting data from SQL Server into a report format?
I guess this is a far as capabilites, ease of use, limitations, and especially formatting
or presentation of the end report product?
Thank you to all, and I hope this is a beneficial discussion to others.
Hal1490
Hal9000
View 4 Replies
View Related
Mar 27, 2008
My issue is with converting multi-value parameters:
In Crystal Reports, you can set a parameter to accept multiple vales (Discrete, Range or Discrete and Range).
As an example:
I have a database table with a column called ID.
I can create a parameter called param_id and set the options of the parameter to "Allow multiple range values".
With this setup, I can limit the result set of the report by comparing the param_id parameter to the ID column in the database. Because param_id is a multi-value range parameter, I can pass it the following data:
1 - 50
60 - 80
150 - 127
This will only return results within those ranges.
Does anyone know if SSRS provides this kind of functionality?
Thanks,
Patrick Conway
View 9 Replies
View Related
May 3, 2001
A long shot but someone may have experienced same problem. We are using Crystal Info to run reports against a SQL 7 database. Reports that usually take 1 or 2 minutes to run are taking up to 15 minutes to run. The database is fine ie you run the query through the query analyser and it runs in 1 or 2 minutes. Any ideas... I've spoken to Seagate but not making much progress.
Thanks in advance..
View 1 Replies
View Related
Sep 6, 2000
Can any one tell me where can I find good online help for Crystal Reports for learning?
Thanks!
View 1 Replies
View Related
Apr 19, 2006
I am working on creating Crystal Reports from a SQL database.
In CR you can define a multiple range parameter i.e. 1-10, 100-200, 300-400 and Cr will filer records that satisfy this criteria.
How can I transfer this functionality using a stored procedure?
View 1 Replies
View Related
Mar 6, 2006
Hi,
I am new to crystal reports.
I need to change the database connection in the reports to different sql server database and use the same report layout.
Any help is appreciated.
View 4 Replies
View Related
Mar 20, 2007
I'm new to SQL but have quite happily been using Crystal Reports without it until now.
I am creating a letter template and it has the name at the top then the address
<name>
<address1>
<address2>
<address3>
<address4>
There is always an address 1, but maybe not a 3 or a 4, and aparently we dont want any line gaps to show, so I figured i should use an isnull to eliminate the line and to move the other address line up?
Not sure what to put though, any ideas?
Thanks in advance for any help :o)
View 2 Replies
View Related
Sep 27, 2007
THE TIME PORTION OF THE DATE/TIME IS NOT DISPLAYING IN CRYSTAL 8.5
IT SEES THE DATE...BUT NOT THE TIME
ANY SUGGESTIONS
View 3 Replies
View Related
May 17, 2007
Hi,
I have a question. How can i fill a report made in CrystalReports in .net
Thanks in advance
View 1 Replies
View Related
Mar 14, 2008
what are the good resources for crystal reports.
Also is it something which is difficult to work with ? Suggestion, experiences and notes please.
View 4 Replies
View Related
Mar 7, 2008
Hi all,What is Drill Down Reports in Reporting Servies.How can i design Drill Down Reports.
Give me any example to desing Drill Down Reports.
Regards.
View 5 Replies
View Related
Feb 21, 2007
Any way to have the drill through report open in a new window on the web?
View 4 Replies
View Related
Sep 11, 2007
Hi all
is it possible make drill down reports in crystal
my requirement is like
i have n rows in my report
if am clicking the first column in first row it will list details of that row in between first and second row
Same for all the rows
Quick reply is appreciated
Regards
Rameez
View 2 Replies
View Related
Feb 2, 2006
Hi,
I'm very new to SQL Server, I'm coming from an Oracle background.
I've set up a server with windows authentication but I'm having no luck connectiong to it with Crystal Reports XI.
Can anybody go through the basics with me?
Regards
Sean
View 6 Replies
View Related
Jul 23, 2005
Hi,I'm semi-new to crystal reports & sql server and what i want is toextract data from a sql server file. I've been able to connect to sqlserver directly and get the info. i need but is there a way to just openthe data file (in crystal reports) without making a server connection?TIA
View 1 Replies
View Related
Jul 23, 2005
Has anyone had any luck getting Crystal Reports 8.5 to work with theSql Server 2000?I keep getting a "Unable to open Database" error. I've tried openingwith either the .Connect property and the LogOnServer method and getthe same message from either approach.I am using the OCX control.Does this version work with Ms Sql?Any thoughts and suggestions would be most appreciated.Thanks.-Dave
View 4 Replies
View Related
Jul 23, 2005
I exported a column of type float to SQL Server using DTS. In Crystalreports, it 'sees' the column as a string! Is 'float' the best type touse? Must I create a formula field in CR to 'correct' for this?
View 3 Replies
View Related
Jun 27, 2007
I am just exploring options for setting up online databases to permit input by clients and output in the form of Crystal reports. Am I barking up the wrong tree or on the right track?
View 1 Replies
View Related
Apr 19, 2007
Hi
Im new to reporting services but experianced in crystal reports
Im trying to convert some crystal reports into sql 2005 reporting services.
I have this formula in crystal reports which I cannot seem to replicate in Reporting services
if {TABLE1.TYPEID} = 1 then (0 - (
if {TABLE2.CURRENCYDESC} <> 'GBP' then {TABLE3.TOTALVALUE} / {TABLE4.EXCHANGERATE} else
({TABLE3.TOTALVALUE})-{@line total}))
else
if {TABLE2.CURRENCYDESC} <> 'GBP' then
{@Gross Profit} / {TABLE4.EXCHANGERATE} else {@Gross Profit}
I have already created the formulas for @line total and @gross profit
Can any one please put me into the right direction
Thanks for your help
View 5 Replies
View Related
Feb 19, 2008
Hello all ...
I want to know which would be the best for reporting in either of the above two. I am working on with SSRS but don't have any idea about crystal reports. So you all please suggest the best one would be for me espcially for web based reporting.
Regards,
View 7 Replies
View Related
Jul 13, 2007
Hi, all. Does Microsoft provide a document comparing SSRS against Crystal Reports? Thanks.
View 1 Replies
View Related
Feb 21, 2007
I showed my boss the functionality of ad hoc reporting in SRSS and he likes it. He asked me if we could completely move away from Crystal Reports (CR) to SRSS.
Does anyone have any issues with SRSS that didnt exist in CR.
One question i have is programmability capabilities. Some time back i had to make a very complex report in CR. I create a table in the dataset. Designed the report to pull data from that table and the table was being populated through some VB.NET code. So the users will open a GUI and hit RUN, which is when i will populate the table and show the report. You can assume that populating the table required complex programming and couldnt have been done through user defined functions in a report.
I dont suppose stuff like this can be done in SRSS?
View 1 Replies
View Related
Oct 12, 2007
Hello
i have a problem in crystal report, i want to dispaly data from MYSql data base to crystal report through my application
I have'nt work on crystall report before this
please help me.....
thanks in advance
View 5 Replies
View Related
Nov 21, 2007
Hi All,
Am new to Reporting Services. I need to create some drill down reports. Am unable to find any guidance or tutorials. Anyone please help me to create drill down reports
Thanks in advance
Regards
Nataraj.C
View 3 Replies
View Related
Nov 21, 2007
Hi all,
Am new to SQL Server Reporting services. I need to create some Drill down reports. Am unable to find any guidance or tutorials for that. Please help me to create variety of drill down reports.
Thanks in advance.
Regards
Nataraj.C
View 2 Replies
View Related
Jul 23, 2007
How do I drill through to a report from a report that's in a different directory? In the designer I can only drill through to reports that are in that project. I'm sure that there is a simple solution (hopefully!).
View 1 Replies
View Related
Aug 23, 2004
Can anyone tell me if MS Reporting Services can import/read a Crystal Reports file as it can an Access report file?
I've seen a few posts out on other boards that there are some companies charging fees for converting Crystal Reports over to MS Reporting Services.
Is there any easier way? Are there any tools out there that can do it?
Perhaps Microsoft should produce such a tool for converting...
Thanks in advance for any help!!
View 3 Replies
View Related
Nov 9, 2004
All,
I have been tapped to help with fixing a reporting tool. We have a Sql Server database/crystal reports(10) setup. I havent had the chance to look at the tables in the DB yet, but I was told that aggregate tables were used. In my past experience with crystal reports, we used database views to feed crystal reports (in Oracle). I was thinking that I could somehow use views instead of tables and then try to re-index the base tables and compile satitics (if theres such a thing with Sql Server). I was also going to look into bottlenecking and locking (table locking as opposed to row or page locking for the lookup tables...to reduce overhead on the main tables) but, I'm not sure if it'll make a difference since this is just a demo server with no major traffic hitting it yet.
The question is, does anyone have any experience with crystal reports running slow with Sql Server, what should I look out for??
'Wale
View 9 Replies
View Related
Jan 27, 2005
Hi guys!
I am new in Crystal reports so please help me on this one.
I have to create a report that will bring back the TOP 20 customers per Sales Rep. My SQL stored procedure needs a parameter @SalesRep to execute. My stored procedure links between 2 tables. How do I get this stored procedure executed in Crysal Reports to give me results. The SP works fine.
THANKS!!
View 10 Replies
View Related
Jan 16, 2004
Hi all,
I have been trying to create an application for Pocket PC. I want to provide some report writer to the database in SQL Server CE. But, whenI select smart device application, the Crystal Report component is not available in the Tool Box. Even when I try to add the component, Crystal Report viewer component is not seen. How can I add Crystal Reports in my application? Can anybody help me?
regards
View 6 Replies
View Related
Dec 15, 2007
I have created a "read only" login on the SQL 2005 database server with rights to the public role with grant connection rights. When I use the "read only" username in Crystal Reports, the database does not show in the dropdown box. When I give "read only" sysadmin rights, all databases appear. I do not want "read only" to have sysadmin rights, is there another way around this that would truly give "read only" read-only rights?
TMDavis
View 3 Replies
View Related