crystal-reports-xi

Blank Parameter Panel in Crystal Reports Viewer

你说的曾经没有我的故事 提交于 2019-12-13 07:40:16
问题 I'm building a web based (ASP .NET) application to display Crystal Reports. The reports itself have been build in Crystal Reports XI and I'm working in Visual Studio 2010. It's working but the Parameter Panel visible on the left of the report is blank, eg. it does not display any parameters even though the report has a few of them and the user is prompted to enter their values before the report is generated. I've found some information that this might be caused by an old version of Crystal

Formula won't display when certain fields are null

若如初见. 提交于 2019-12-13 06:40:05
问题 Similar to my first question. I want to show my address in a text box containing the fields as follows {Company} {AddLine1} {AddLine2} {ZIP}{State}{City} {Country} The line that concerns me (and hopefully some of you guys) is {ZIP} {City} {State}. What I want to produce is a consistent addressing format, so that there will be no blank space or indentation even if a ZIP, City or State field has been left blank in the DB. This line should still line up with the rest of the rows and not be

Crystal reports The parameter is incorrect C#

独自空忆成欢 提交于 2019-12-13 04:39:38
问题 I have a report that has two parameters: ponumber and receiptno. I'm trying to call the report from a C# page where the parameter values are passed in via the URL. When I call the report, I get an error "The parameter is incorrect", but can't figure out why. I've done a variety of code changes based on what I found online, because at first the Report Viewer said there were no parameters, so this approach seems to be better , but doesn't work. My code: string ponumber = Request.QueryString[

How do I in Crystal Report sum data on a column where id is some number

Deadly 提交于 2019-12-13 04:06:33
问题 I am new to Crystal Reports and have been trying to figure this out for a while. I am running Crystal Reports XI. Please Help. The data: john respMonitor 5 abe case mgmt 4 Cy test1 4 Claire respMonitor 5 Moe test3 2 Bob case mgmt 8 Lynn respMonitor 4 Rick test2 33 Ray test1 31 Al test1 24 etc. I want to create the following data: group cost sumOfTests1_3 124.0 <====== want a sum of tests only respMonitor 5.0 caseMgmt 7.0 respMonitor 3 respMonitor 2 caseMgmt 4 etc. So I want to be able to only

Crystal Report: Is PreviousNull prints incorrect data

微笑、不失礼 提交于 2019-12-13 03:37:59
问题 Some days back i posted a question in SO at Crystal Report: Display 0.00 for duplicate values The question was to remove duplicate values and the report should display 0.00 instead. It was very kind of @adatapost that he posted a solution. Now,it is throwing very irritating and awkward problem. The 7th record is showing up 0.00 Hence, if the record was like before as 400.00 400.00 400.00 500.00 500.00 500.00 600.00 600.00 600.00 After that formula applied is showing something like 400.00 0.00

Using Crystal Reports XI with classic asp

早过忘川 提交于 2019-12-13 02:57:06
问题 I am trying to use Crystal Reports XI for viewing/edits reports in classic ASP. I run into following error on this line : Set session ("oApp") = Server.CreateObject("CrystalRuntime.Application") Error: Server object error 'ASP 0177 : 800401f3' Server.CreateObject Failed I went through all the solutions found online but couldnt find resolution. I am using IIS7. Please help. 回答1: There are many DLL's that have to be registered. The easiest way is to install the runtime libraries from SAP (the

Make Stored Procedure parameters cascading in Crystal Reports

戏子无情 提交于 2019-12-13 01:12:00
问题 I don't have a lot of experience using Stored Procedure as a data source for Crystal Reports. My question is that when you connect to an Oracle Stored procedure which has 2 parameters - Country and City, the parameters are already mapped in Crystal individually. Is there a way i can make these parameters cascading i.e. Country > City, either on front end or backend 回答1: After you add a stored procedure to the report, you should see the two parameters listed in the Parameter Fields section in

Crystal Reports formula field: IF ISNULL(decimal) THEN 0.00 … does not work correctly

大兔子大兔子 提交于 2019-12-12 02:23:43
问题 I have two values that I am pulling from my database: {Command.AmountPaid} (of type Decimal(12,2)) {Command.AmountRefunded} (of type Decimal(12,2)) I am trying to create a formula field that will return {Command.AmountPaid} minus {Command.AmountRefunded}. Here is some pseudocode: numbervar Paid := IF ISNULL({Command.AmountPaid}) THEN 0.00 ELSE {Command.AmountPaid}; numbervar Refund := IF ISNULL({Command.AmountRefunded}) THEN 0.00 ELSE {Command.AmountRefunded}; Paid - Refunded; When null

Crystal Reports using multiple results from a Stored Procedure

﹥>﹥吖頭↗ 提交于 2019-12-11 08:48:08
问题 I have a stored proc in sql-server and one of the parameters it returns is a string with the query parameters. I display those query parameters at the top of the report. That works great if something is found, not so great if nothing was found. We have tried returning two query results, one the data set that I will make the report from (which includes the query parameters), the other the query parameter string. Crystal appears to only see the first data set, and this very old discussion (http

Reporting on multiple tables independently in Crystal Reports 11

一笑奈何 提交于 2019-12-11 04:55:38
问题 I am using Crystal Reports Developer Studio to create a report that reports on two different tables, let them be "ATable" and "BTable". For my simplest task, I would like to report the count of each table by using Total Running Fields. I created one for ATable (Called ATableTRF) and when I post it on my report this is what happens: 1) The SQL Query (Show SQL Query) shows: SELECT "ATABLE"."ATABLE_KEY" FROM "DB"."ATABLE" "ATABLE" 2) The total records read is the number of records in ATable. 3)