Design reports that print consistently in difference PC environments

Crystal 9.0 The main issues are with 11x17 reports. In the developer PC the reports are viewed and printed properly. When encapsulated using VS 2003 and distributed to other companies, some are chopped to 8.5x11, others are resized and printed to 8.5x11, others are printed correctly.
Assuming that the client PC does support the paper size 11x17 what could cause this strange behaviour?
Thanks.

It really may be a good idea to check if there are updated drivers for those Canon and Konika (BizHub 500) printers. You would not believe how many times that resolves all kinds of issues.
On computers that do not have a printer, the report is able to use it's own "internal printer driver", so the view will render. While we're at updates, let's make sure the latest SP is on that computer. You can download and apply the SP directly (if that helps, we'll need to create a deployment package with the latest runtime). The latest SP is [here|https://smpdl.sap-ag.de/~sapidp/012002523100005987362008E/cr90win_en_sp5.exe].
The reports that give you the "Page header or footer longer than a page" error. Try this:
1) Open one of the reports in the CR designer.
2) Go to the File menu and select Printer setup
3) Place a check mark at "No Printer"
4) See how this report performs now.
If that does not help do the following:
1) Open the report in the CR designer
2) Go to the File menu and select Printer setup
3) remove the check mark from "No Printer"
4) Look at the list box of available printers. The first printer driver in the list is the default printer. If a lower printer driver is selected, select the first printer driver (the default), click OK and save the report.
We've just set the report to use default printer driver. See if that helps.
Ludek

Similar Messages

  • Xml report to print AR invoices to multiple companies

    Hi,
    can anyone help me to work on this issue, I need to Develop one XMLP report that prints AR invoices for multiple companies, and multiple invoices for each company.
    It will be thankful, if anyone help me to come out of this issue. I need it urgently
    Thanks

    Hi
    Are you working in EBusiness Suite or another ERP app? IF so then there are already invoice reports built out of the box that you can use quite quickly.
    If not then you need to find out from your users what they want to see on the invoice, then map that to the columns in tables and then write the query to extract the data.
    Tim

  • Scheduling a report to print to a specific printer tray

    I'm trying to schedule a report to print to a specific tray on a specific printer.
    The SDK permits me to specify the printer, using ReportPrinterOptions, but it just seems to always print to the default tray for each printer and there are no ways, that I've found, to specify a particular paper tray to print from.
    Normally this isn't an issue, but we have a client that has a special report that prints to special paper that's always available in the secondary tray of the printer.
    Have I missed something obvious here?  Any help would be appreciated.

    Hello,
    You didn't specify the version of Crystal Reports you're using, the version of Visual Studio you're using, or which .NET SDK you're using. Assuming you're CR XI R2 (v11.5) with VS2003/VS2005 and the CR.NET SDK (reportdocument object) then you're looking for the CustomPaperSource property off of the PrintOptions class.
    You can search the forums for additional posts, but I found this one - [Setting PaperSource|Re: Setting PaperSource;. There may be others.
    You can also find information in the [CR XI R2 Developer Library|http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/devsuite.htm]. Search on CustomPaperSource.
    There is a tutorial available under the [PrintOptions.CustomPaperSource Property|http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/en/CrystalReports_dotNET_SDK/crsdk_net_doc/doc/crsdk_net_doc/html/crlrfCrystalDecisionsCrystalReportsEnginePrintOptionsCustomPaperSourceTopic.htm] search result.
    This should get you back on track.
    Sincerely,
    Dan Kelleher

  • Database report header prints info not in filtered info ??

    I have a database where I sort on a division ID #, a location and salary. I then find records of a particular division # for a report. In the report I use a layout that has a report header with the NAME of the division, not the ID #, along with the location, page number and date. When I pick the report from the report choices the header contains the correct name of the division but when I go to print (either a file - print preview or file and just print to paper) the NAME of the division defaults to the NAME of the division in the LAST record in the entire sorted database. Page 2 and any remaining pages of the report contain the correct division name, it is only the first page that has the error. The only report that prints correctly is the one that reports on the last division. What am I doing wrong?
    Frustrated ...... Richard

    Hi Harshith,
    I have already tried for custom button and code to download into excel and it works fine for normal case.
    But when the user will sort on any filed then the report gets modified (gets grouped etc). In that case my code gets failed as i am getting the report data from the context node which in this case will be simple but diiferent as what user is seeing on the screen.
    so is it possible to get the report data (currently visible in the screen).
    Thanks in advance
    Gopal

  • Printing report that has a parameter with multiple values crashes jvm

    I am using BOE XI 4.0 as an unmanaged RAS.
    I am able to preview a report that has a string discrete parameter that can have multiple values.  If I give it a single value.  It previews fine.  If I give it an empty string it prints all values which is fine.  If I give it two discrete values, it displays just those two.
    However, if I try printing the report to a printer:
    1 parameter value - prints fine.
    2 parameter values - crashes jvm
    empty string parameter value - crashes jvm
    I would appreciate some direction on how to do this.  It works in crystal reports for eclipse.
    The test jsp I am using is based off of the samples.  The print test jsp is the same as the preview test with the exception of the following code differences.:
    preview report.jsp code
    // Create a Viewer object
    CrystalReportViewer viewer = new CrystalReportViewer();
    // Set the report source for the  viewer to the ReportClientDocument's report source
    viewer.setReportSource(clientDoc.getReportSource());
    // Process the http request to view the report
    viewer.processHttpRequest(request, response, getServletConfig().getServletContext(), out);
    // Dispose of the viewer object
    viewer.dispose();
    print report jsp code
      PrintReportOptions printOptions = new PrintReportOptions();
      printOptions.setPrinterName("DELL");
      try {
          clientDoc.getPrintOutputController().printReport(printOptions);
      } catch (ReportSDKException ex1) {
          System.out.println("Message - " + ex1.getLocalizedMessage());
      } catch (Exception ex2) {
          System.out.println("Message - " + ex2.getLocalizedMessage());
      clientDoc.close();

    I am using BOE XI 4.0 as an unmanaged RAS.
    I am able to preview a report that has a string discrete parameter that can have multiple values.  If I give it a single value.  It previews fine.  If I give it an empty string it prints all values which is fine.  If I give it two discrete values, it displays just those two.
    However, if I try printing the report to a printer:
    1 parameter value - prints fine.
    2 parameter values - crashes jvm
    empty string parameter value - crashes jvm
    I would appreciate some direction on how to do this.  It works in crystal reports for eclipse.
    The test jsp I am using is based off of the samples.  The print test jsp is the same as the preview test with the exception of the following code differences.:
    preview report.jsp code
    // Create a Viewer object
    CrystalReportViewer viewer = new CrystalReportViewer();
    // Set the report source for the  viewer to the ReportClientDocument's report source
    viewer.setReportSource(clientDoc.getReportSource());
    // Process the http request to view the report
    viewer.processHttpRequest(request, response, getServletConfig().getServletContext(), out);
    // Dispose of the viewer object
    viewer.dispose();
    print report jsp code
      PrintReportOptions printOptions = new PrintReportOptions();
      printOptions.setPrinterName("DELL");
      try {
          clientDoc.getPrintOutputController().printReport(printOptions);
      } catch (ReportSDKException ex1) {
          System.out.println("Message - " + ex1.getLocalizedMessage());
      } catch (Exception ex2) {
          System.out.println("Message - " + ex2.getLocalizedMessage());
      clientDoc.close();

  • Report Rendering (Print & PDF) trashes report that looks fine on screen

    Since installing SQL Server 2012 SP2 CU3 (11.0.5556) a number of reports look fine on screen but when printed or exported to PDF the format is totally altered so that either many blank lines are inserted between lines, or lines are squashed together. It
    doesn't affect all reports. Reports (both affected and not affected) use Tablix with both Row Groups and Column Groups. There is no obvious consistency between those reports that are affected.
    All of our SQL Server instances are hosted on VM-Ware virtual servers.
    I've raised the issue via Microsoft Connect: https://connect.microsoft.com/SQLServer/feedback/details/1063641/report-rendering-print-pdf-trashes-report-that-looks-fine-on-screen
    Any thoughts or workarounds? Is this a bug?
    Thanks!

    Hi nsam,
    We installed the sqlserver 2012 sp2 cu3 in our lab, but unfortunately the issue cannot be duplicated, so I provided the following options for your reference.
    1),Please help to provide a way with detail steps to duplicate the issue.
    2),If you don't know how to duplicate the issue, please try to remove the sqlserver 2012 sp2 cu3 update by the following steps to see if the issue can be fixed.
    In Control Panel, open the Add or Remove Programs item.
    2. Click Change or Remove Programs .
    3. To see all the updates for the SQL Server 2012 installation, click to select the Show Updates check box.
    4.Uninstall the cumulative hotfix package.
    3,)Please visit this link to see the various support options that are available to better meet your needs: 
    http://support.microsoft.com/default.aspx?id=fh;en-us;offerprophone

  • Need to print a report that has two pages but based on condition

    Hi
    Can someone help me. I have a report that has 2 pages and I need print it but not boths pages at the sametime.
    I have code ( the conditions)like this
    If (A=Y) then
    print Page 2
    else print page 1
    end if;
    Note: Where would I put the code. Please
    Thank you

    Some folks have written JavaScripts for such needs, but for only 6 pages I would simply do the following. 1. Crop all pages to show 1 and 4. Then print to a new PDF (not optimum, but will do the job). 2. Repeat for 2 and 5. 3. Repeat for 3 and 6. Now open one of them in Acrobat and the use insert pages to insert the other two files. Now rearrange the pages using the Pages display and save. That should do the job.

  • One report that will print two reports.

    Post Author: garling
    CA Forum: Crystal Reports
      Normal
      0
      false
      false
      false
      MicrosoftInternetExplorer4
    st1\:*
    /* Style Definitions */
    table.MsoNormalTable
         {mso-style-name:"Table Normal";
         mso-tstyle-rowband-size:0;
         mso-tstyle-colband-size:0;
         mso-style-noshow:yes;
         mso-style-parent:"";
         mso-padding-alt:0in 5.4pt 0in 5.4pt;
         mso-para-margin:0in;
         mso-para-margin-bottom:.0001pt;
         mso-pagination:widow-orphan;
         font-size:10.0pt;
         font-family:"Times New Roman";
         mso-ansi-language:#0400;
         mso-fareast-language:#0400;
         mso-bidi-language:#0400;}
    I need to create a report that has two parts; the first part will contain the details of the transaction, second part will contain a place for the client to sign. I have the report completed but need the first part to print, have printer cut the paper then print the second part of the report. Is there a way to do this within one report?I have Crystal 10

    Post Author: garling
    CA Forum: Crystal Reports
    Sorry above message is not showing correct:  I need to create a report that has two parts; the first part will
    contain the details of the transaction, second part will contain a
    place for the client to sign. I have the report completed but need the
    first part to print, have printer cut the paper then print the second
    part of the report. Is there a way to do this within one report?I have Crystal 10

  • Add a new table to an existing Print Layout Designer report

    Is it possible to add a new table to an existing Print Layout Designer report? For example, in the Production Order there is a Sales Order field (which is displayed on the report), I would like to display some information from UDFs found on the Sales Order, but when I add a Database Field to the report the Sales Order tables does not appear in the list (OWOR).

    Hi
    It is possible provided there is a relationship which exists between two tables.
    You can add a Database field. Goto the Properties and selct Content Tab.
    Now in the Table dropdown, hold the Alt Key and click. This displays all the tables in B1. After selecting the Table, you can select the related Column.
    Remember there should be a relationship which exists between this column and existing columns.
    Because PLD works completely on Joins to my understanding

  • Help!  PDFs are not printing because adobe reporting that postscript conversion needed?

    Help!  PDFs are not printing because adobe reporting that postscript conversion needed?  Can someone help me?  Please?

    Please give us the complete error message, every word. This is not a familiar symptom.
    Also: What software and version are you printing from? What system do you have?

  • Report that would display difference against BOM and Final Prod Orders

    Hello SAP Gurus,
    Is there a report that would display BOM and Final Materials that are used in production orders?
    Thanks in advance.

    Nanz,
    You can use COOIS as well as CO28 for this.
    In COOIS, select 'Components' in the 'List'.
    Give desired selection input & execute.
    In CO28, select 'Components in the initial screen.
    In the next screen give input as required & execute.
    Hope this helps you.
    SmanS

  • Problem With Designing a Report that Contains a Subreport

    Tools:  SQL Server 2012 , Report Builder 3.0
    I am having an issue creating a report that has a tablix with the main set of data all in a group and within a cell of that tablix  I have a subreport that goes based on the previous data within that tablix group.  Problem is, the subreport
    works when it wants to or generates errors that aren't really helpful.
    Error example:
    Exception of type 'Microsoft.ReportingServices.ReportProcessing.ReportProcessing+DataCacheUnavailableException' was thrown.
    An error has occurred during report processing. (rsProcessingAborted)
    I am wondering if there is alternative way to accomplish what I need.
    Report layout:
    SQL Table ID
    Data based on that ID
    Subreport with data from above passed into the parameters.
    repeat for the next table ID within a certain data range.

    Hi redx350,
    According to your description, we can try to refer to the following steps to achieve your requirement:
    Create a parameter named ID in the subreport.
    In the main report, right-click a cell to insert a subreport.
    Right-click the subpeort to open the Subreport Properties, and select the subreport name in the drop-down list.
    In the left panel of the Subreport Properties dialog box, click Parameters.
    Select Name in the drop-down list of ID, and select [ID] in the drop-down list of Value.
    Besides,
    hereis
    a feedback that you can vote for. This is a much better chance of this getting fixed if you log a Connect and vote on it to get it fixed. Microsoft would do take votes into account when
    they prioritize features.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • CR XI landscape report not printing correctly on one particular server

    Post Author: BronxJedi
    CA Forum: General
    I have a report that was designed in Crystal XI (11.5.0.313) that is not previewing or printing correctly when the users access it on our production server. The report is designed as a landscape report, for an 8.5x11 size paper; however, when this report is previewed on the production server all of the data is pushed over to the left, as though the computer is trying to cram it all into a portrait-sized layout. Furthermore, when viewing the Document Properties of the report in preview it says that the page size is 11x17!
    This report, I should mention, is part of a web application designed in Visual Studio. When users select a report to run the application actually displays the report as a PDF document in an Adobe Reader window. So, when I mention "preview" in this post it is not the Crystal Reports print preview window but rather an Adobe Reader window previewing the report as a PDF document.
    None of the other landscape reports in this application are demonstrating this same problem. Also, the report in question previews and prints perfectly fine when it is run on other computers or servers.
    Currently, we have eliminated design flaws in the report as a suspect because all of the pertinent properties in the report's design are set properly. We have also eliminated the users' printer settings as the culprit because the problem exists no matter who attempts to print that particular report and no matter what printer is chosen.
    Right now we are operating under the assumption that the problem lies within the server (which is a new box that just replaced one which died...the hardware on this new box is different, I am told by our server guy, but everything else was mirrored from the old box); however, we are unsure of what to examine in our attempts to fix it.
    The production server is running Win 2003 Server, R2, SP2 and there are no apparent printer drivers installed on the production server. We are using Adobe Reader 8.0 on all machines that can access this report.
    If anybody out there has had this same problem or knows of anything else we can check (either on the production server or within the report's design) we'd appreciate it. Why would only this particular report be exhibiting this problem and why on Earth would the Adobe Document Properties think that the page size is 11x17?
    Thank you,
    Sean

    Once you find an erroneous report, can the report be re-run over the same data (same parameters, same underlying data records after record selection) and the error duplicated?
    Can you dump the data read by Crystal in the Detail section of the report?  (Verify the data is as expected...)
    Can you post the stored procedure?  (Please wrap it in  markup to keep it readable.  A sample of both crosstabs wrapped in the markup would be helpful, too.)
    Carl

  • Faxing a Crystal Report that has been exported to a PDF

    Hi. I am having a problem trying to fax a Crystal Report that has been exported to a PDF. I am using Windows XP Pro SP3, VB.Net 2008 and the Crystal Reports that came with it. The report exports to a PDF with no problem.  Generally, I can fax a document by putting <TOFAXNUM:12481234567><NOCOVER><DELETE><FINE> at the beginning of a document and send it to my fax printer.  The fax printer requires the <embedded code> to be in a printer font rather than a true type font. I put the embedded code as a report header on the report using Courier font, but it has a problem when it converts my font. I'm pretty sure the problem has to do with converting my font before it sends it to the printer.  Is there a solution in Crystal Reports to convert the font to printer font?

    I am using Table Adapters to filter my data from multiple Sql tables and processing the data using VB.net 2008. Once I have the data, I write it to temporary tables which are the data source for my Crystal Report. The Sql queries are not part of the Crystal Report designer. Within the VB.net , I export the report to a stream in PDF format. The VB.net code is done. I'm looking for a way to fax the report without having to re write my entire code. I don't think the report can be exported thru the designer the way I have my data sources set up.

  • Crystal XI can i force client pc to use my reports internal printer driver not PC default

    Post Author: tjarre
    CA Forum: Crystal Reports
    I have created a report using Crystal XI on my PC using a virtual printer - i did this so that i can have hugeA2 sized paper and hence a huge report with lots of columns on it.
    when this report gets viewed on a client PC &#91;via a report viewer&#93;, if the client PC has no default printer the report views fine. If the client PC has a default printer installed then this gets picked up and the report invariably gets clipped. at design time can i set something so that the reports internal printer driver always gets used? NB the report will never be printed - just needs to be viewed.
    the only workarounds i can see are for users to remove all their printers or install the virtual printer that i used - neither of which are very workable
    any help appreciated Tom

    Post Author: ng40
    CA Forum: Crystal Reports
    Tom,
    Did you ever find a solution to this problem other than checking the "No Printer" option and redesigning the report from scratch? I'm running into the same problem with a report I'm working on. When I check the "No Printer" option it completely messes up the report formating and causes data not to display.
    Nate

Maybe you are looking for