Can we use stored procedure for creating the report?
Answers were Sorted based on User's Feedback
Answer / thirumalai
Can. By Adding Command in Crystal Report XI.
Is This Answer Correct ? | 17 Yes | 2 No |
Answer / vijay yadav
Yes we can use stored procedures for develope reports.
Is This Answer Correct ? | 14 Yes | 1 No |
Answer / naresh
Yes results of a stored procedure are treated as a table
Is This Answer Correct ? | 14 Yes | 1 No |
Answer / bennit
Yes results of a stored procedure are treated as a table
Is This Answer Correct ? | 9 Yes | 1 No |
Answer / sachin bashetti
When we create report using crystal ,stored procedure
parameters converts to crystal parameters.u can pass vales
to this parameters using vb code like other parameters
passing
Is This Answer Correct ? | 7 Yes | 0 No |
Answer / babu
Yes, We can use. But that system needs to be validated.
Yhat should not effect the quality of the product.
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / jahir
Hi Friends,
Any one can give a sample code to generate the crystal
report from vb 6.0 (using stored procedure)
Is This Answer Correct ? | 6 Yes | 3 No |
Can we create report using more than one database?
3 Answers CSC, Seed Infotech, Target,
How many .rpt files are be there in a main report having 2 sub reports?
17 Answers Accenture, Cap Gemini, CTS,
Where can we find the log file generated when we run a crystal report?
Can anyone help me with an answer to this question? Where is the image located, after you've placed it on the report?
I am not able to see any image on Crystal Report at Run time. So how can I load any image which is saved in local disk so that it can be viewed at Runtime in Crystal reports?
How to pass stored Procedure Parameters to the report?
How do we connect to the database?
How can we improve the performance of a crystal report? OR What all performance improvement techniques used in crystal reports? (particularly CR XI)
Suppose I have a crystal report with a linked subreport as well. Is there any way not to print the current record on the main report if no records are returned from the subreport?
What are the advantages or disadvantages of using Crystal Reports in a Windows Forms application as opposed to say rolling our own reports as HTML and displaying them in the Internet Explorer control?
Where is the image located, after youve placed it on the report?
hi ... i've created one crystal report in windows form and one crystalreportviewer .. the following is my code.. in form1.cs file try { ExportOptions CrExportOptions; DiskFileDestinationOptions CrDiskFileDestinationOptions = new DiskFileDestinationOptions(); PdfRtfWordFormatOptions CrFormatTypeOptions = new PdfRtfWordFormatOptions(); CrDiskFileDestinationOptions.DiskFileName = "c:\\csharp.net- informations.pdf"; CrExportOptions = cryRpt.ExportOptions; { CrExportOptions.ExportDestinationType = ExportDestinationType.DiskFile; CrExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat; CrExportOptions.DestinationOptions = CrDiskFileDestinationOptions; CrExportOptions.FormatOptions = CrFormatTypeOptions; } cryRpt.Export(); } the above code is saving the file into pdf into specified path.. but i dont want to save a file i should get direct print preview and have a option to print .. As we do in web application using crystal report viewer clicking print and report will be opened in pdf.. and the click print.. i want the same function as we do in web application... i'm writing code in c#.net hope the above explaination will be understood clearly..