Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Crystal Reports Articles
Found 8 articles
Edit report generated from SAP Crystal Reports
In SAP Crystal Reports, it is not feasible to directly edit a report once it has been generated. The generated reports are read-only by default, and you cannot add constraints or logic to make your report editable in the standard Crystal Reports viewer. Workaround Solution However, there is a practical workaround that involves exporting the report and then modifying the document properties. Here's the approach − Step-by-Step Process Step 1: First, export the generated Crystal Report to your desired format (such as ...
Read MoreDisplaying Records with maximum event number for each group in SAP Crystal Reports
When working with SAP Crystal Reports, you often need to display only the records with the maximum event number for each group. This is a common requirement when you want to show the latest or highest event for each deal or group in your report. The most effective approach is to use the suppress formula to hide details that don't match the maximum event number criteria for their respective group. Suppress Formula Method I would suggest using this logic to suppress details if ...
Read MoreSuppressing the page header till the last page in SAP Crystal Reports 2008
To suppress the page header until the last page in SAP Crystal Reports 2008, you need to use the OnLastRecord function. This function is essential for controlling header visibility based on record position within your report. OnLastRecord Function Function Description: This function returns TRUE when the current record being evaluated is the last record in the report. Returns: Boolean Value (TRUE or FALSE) Action: This function evaluates each record and returns TRUE only when processing the final record in the report. You can use this in conditional suppression formulas to control when headers ...
Read MoreNot able to save a SAP Crystal Report for Enterprise 4.2
Note that you need to check if Crystal Report for Enterprise 2016 support specific IBM DB2 version and for this you need to check product compatibility guide for development.Are you using Universe developed on IBM DB2 then you need to ensure that you are using correct version of drivers JDBC/ODBC in IDT to create a Relational connection. You also need to ensure that connection is also published to SAP BI repository. If your version of DB2 and Crystal Reports is ok, I would recommend you follow below steps:First steps is to start, you need to create a System DSN in ...
Read MoreGetting a carriage return of report field in SAP Crystal Report
You can make use of split as below −// To split the text on carriageLocal Stringvar Array lines: = Split( {table.field}, Chr(20) );// To return carriage 1 less than the number of linesLocal Numbervar delimiters := Ubound(lines)-1;Let us see one more example, how to use split to divide a string in different lines.stringvar array x := split({table.fullname}," "); x[1] stringvar array x := split({table.fullname}," "); if ubound(x) >= 2 then x[2] stringvar array x := split({table.fullname}," "); if ubound(x) >= 3 then x[3]This will split a string in 3 different lines like“Mr”“John”“Harper”
Read MoreDifference between SAP Crystal Reports and CR for Visual Studio
Crystal Reports for Visual Studio 2010 comes free and you can develop as many reports and can host runtime engine without any cost. Now Crystal Reports has been excluded from Visual Studio by default and you need to download it free from SAP site.You can use the following link for downloading CRforVS: http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_13_0.exeSystem RequirementsDetailsProduct PrerequisitesMicrosoft Visual Studio 2010Processor1.6 GHz or fasterMemory1GB (32-bit) or 1.1GB (64-bit) availableOperating systemsWindows 2003, Windows Vista PlatformSupportWindowsOnce you install this, you can still create a new Crystal Report Design in Visual Studio by navigating to the below path:Solution Explorer -> Right click on the Project name ...
Read MoreIn SAP Crystal Reports, Putting 2 pages of data into a single report
You can do this by adding a group based on participant Id as primary key. Then you have to add ran description in group footer.In your group footer settings, check the "New page before" option
Read MoreSAP Crystal Report file is not opening in VS2015
To start with I would suggest you to check SP level on Crystal Report Visual Studio. Try reinstalling Crystal Report and make sure your asp.net application is configured properly. There are various forums that you can search specific for Crystal Reports for VS like this:SAP Tags
Read More