Format on HTML report different than on PDF view

I have a Quote report based on Product Revenue that we send to our customers. I have it formatted nicely when initially displayed and also when viewed with the Printer Friendly HTML option. But... when I view it as a PDF, it is not even close.
The layout of the report uses a narrative section with HTML formatting to get the elements to align correctly, per the documentation. The HTML I use is as follows:
Narrative Section formatting code:
<table width="600">
<tr><td colspan=3>  <div align="center"><b><font size="5" face="Times">
  @10</font><br>
<font size="4" face="Times" >  Prepared Exclusively For: @8</font></b>
</div></td>
</tr>
  <tr> <th width="250"><div align="left">Quote Details</div></th> <th width="50">   </th><th width="300"><div align="left">Sales Manager Info:</div></th></tr>
<tr>
<td>Quote ID: @9</td><td> </td><td>Name: @16</td></tr>
<tr>
<td>Quote Date: @15</td><td> </td><td>Email: @17</td>
<tr><td>Quote Expiration: @14</td><td> </td><td> </td></tr>
<tr><td colspan=3><div align="center"><b>Phones - Cell:</b> @18, <b>Work:</b> @20, <b>Fax: </b> @19 </div></td></tr>
</table>
Notes: @11Is there another way to get the HTML view and PDF view to look the same (or at least close)?
(more details and examples here --> [HTML and PDF Views|http://crm.nurserysupplies.com/images/CRM_HTML_and_PDF_views.doc])

To date, this is considered a product limitation. I just talked with an escalation manager regarding this very issue, and he offered to bring this up with the product managers/engineers on 5/15/09. I recommend escalating this issue and asking your escalation manager to do the same.
We are trying to create a customer contract based on Opportunity information.
The best way to accomplish what you are trying to do is: Click Printer Friendly > Click HTML > Click on File - Print in browser window > Either print to PDF using a pdf printer from adobe or the cutepdf or print a hard copy.

Similar Messages

  • PDF font viewed Evince different than actual PDF font?

    The title says it all. I'm getting a very strange girly font (no offense, but the i's are dotted with hearts) being rendered for all the text on the PDF. Some PDFs that I view in Evince retain their original font. I have no idea why this is happening, and neither do I have this font on my computer. I am so definitely sure about that. Does anyone have ideas?
    I'm using Gnome3 if that matters any.
    Thanks in advance!

    Have you tried a different pdf viewer?  Gimp or inkscape can view pdf files or pages.  Epdfview is a lightweight, less feature-full alternative to Evince.
    It might help to identify the font.  You probably have the poppler package installed.  If so, you can use 'pdffonts' to list the fonts used in the problem file.  The mupdf package includes 'pdfinfo-mupdf' that can also be used to list the fonts used in a pdf-file.

  • PDF Output: Why is "PDF Review" styled different than "Generate PDF"?

    I am new to RH.  I have imported a folder of HTML files (used in an Eclipse Help plugin) into RH9 for HTML as a project. My goal is to produce a PDF document.
    When I generate a PDF from Printed Documentation in the Single Source Layouts pad, many styles are incorrect. I've tried generating to Word and from there to PDF with the same effect.
    However, when I use Create PDF for Review from Project Manager the styles shown in the PDF (fonts, alignment, etc) are nearly perfect! Is the PDF Review option using a different CSS?
    I have tried exploring the CSS specified in the Generate PDF flow, but I am unable to make changes, perhaps due to my massive state of confusion.  So I'm losing hope that I could manually tweak to CSS that I think I use in the Generate PDF flow to appear like the "PDF Review" flow. I specified the same CSS used in the Eclipse Help system, but evidently there must be some defaults built into the Eclipse viewer that are not specified in the CSS we use.
    Thanks in advance,
    Charly in SJ

    Here's what I think is happening. You say PDF review is good but printed documentation gives wrong styles. You also say you assume PDF review uses the Stylesheet (CSS) for each topic, yes it does. Now if that is giving the correct styles it tells you that is what you need when you generate printed documentation.
    When you use a Word template you will get very different styles unless you have set up the template to mirror your CSS. Using the Map to CSS option you have two choices, you can select None when each topic will be printed according to the CSS attached to the topic or you can select one of the CSS files available in the project.
    I suspect that if you select the None option, you will get the same as you are seeing in the PDF review.
    If your document is not going to be worked on by anyone, such as a training department using it as a based document, then the CSS options are fine. If others will be working on it, then the Word template option is better as lists will be true lists and headings will be true heading styles.
    See Printed Documentation on my site.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Format text (Preview is different than Design)

    On my WIP site I cannot get the text in one box center aligned. It looks fine in Design but not in Preview or online. Have tried everything I can think of.
    Please look at brownelllibrary.businesscatalyst.com on the page "About Us" under Limits and Loan periods and lt me know how to solve this problem.
    Thank you.

    Hi,
    When you edit the text of the text box you can press 'Ctrl+A' on windows or 'Command+A' on MAC to select all the text. That way you can determine the empty spaces. I'm afraid that in Muse you can't get the spaces to display like the way it does in Word.
    Check this screen shot,
    I have pointed out the spaces in the text editor.
    Regards,
    Abhishek Maurya

  • Design view and browser view in DW are different than when I view from local folder

    I'm brand new to Dreamweaver CS5.5 and here is my problem:
    I've made an html page in dreamweaver with a banner, with an additional graphic and some text on top of the banner.  It displays just fine in every browser when I view from the local folder, but when I open DW and view, it displays incorrectly in all three design, live and browser views within DW.  If I make changes to the css file until it views correctly in design view, it no longer displays correctly from the local folder and it still doesn't view correctly in live or browser view within DW.  If what I'm doing isnt going to display accurately in any of the views provided by Dreamweaver as compared to the live server, whats the point in having this software?  I could just keep building webpages in notepad and uploading with CoreFTP.
    Any suggestions?  Is it some setting that I dont know about that I need to change within DW?   Please help.

    align="center" is deprecated (obsolete) code in XHTML & HTML5 doc types.  Instead of styling markup with HTML, you should be using CSS. 
    CSS
    .center {text-align:center}
    HTML
    <p class="center">some centered text here</p>
    With respect to break tags, in XHTML doc types the correct syntax is <br /> not <br>.  However your usage of line breaks is inconsistent with good symantic markup.  Use headings <h1> <h2> <h3> <h4> for important keywords.  Use <p> for descriptive paragraphs.  Use <ul> <li> or <ol> <li> for lists.  Line breaks should be used minimally if ever.
    XHTML doc types require all tags to be lowercase.  Uppercase tags will throw errors.
    Your design is too rigid.  When text size is increased in browsers, your content is unreadable.  See screenshot.
    SOLUTIONS:
    1) DO NOT USE POSITION ABSOLUTE.  You don't need it.  Absolute positioning removes content from the normal document flow resulting in a jumbled mess.  Use default CSS positioning (none) with margins, padding & floats to align elements.
    2) Remove HEIGHT values from all CSS containers.  Height limits a container's capacity to hold more content when needed.  Container height should always be determined by the amount of content it holds; not explicit values.  If required to reveal a background image, for example, use CSS min-height instead of height.
    CSS Box Model
    http://www.w3schools.com/css/css_boxmodel.asp
    CSS Floats
    http://www.w3schools.com/cssref/pr_class_float.asp
    CSS min-height
    http://www.w3schools.com/cssref/pr_dim_min-height.asp
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • Lightroom Image Looks Different than in Windows Viewer/CS5/etc.

    I've seen this discussed elsewhere, but I believe the nature of my issue may be a bit different, so please excuse the repeat inquiry.
    I'm currently using Lightroom 3 on a 17' Samsung Syncmaster 920NW on two different desktops. The hardware configuration for each machine is also identical, with only a few minor exceptions. However, the images on one machine display drastically differently in Lightroom, as opposed to any other Windows application. I've updated the video drivers for both computers, reinstalled the monitor drivers for both, and have uninstalled/reinstalled Lightroom on both with no success in remedying the discrepancy.
    Any assistance would be greatly appreciated in finding a solution to this issue. It's very frustrating to be anchored down to one desktop due to the inconsistencies of the other.
    Thanks!

    You need to calibrate both monitors to identical settings, the luminance value being very important, using an appropriate calibration tool and software.
    Spyder Elite software has a specific settings too enable you to match monitors across machines in a studio setting, or from a desk top to a laptop. Without calibration images in viewed in colour managed applications will always look different. If you do not wish to colour manage you can always set a colour space such as sRGB as a monitor profile on all the machines, the only difference you will see then will be down to the luminance value of the monitor. However this will mean images viewed on other peoples screens may differ markedly from your own. The real solution to colour problems is to use colour management and this means calibration of your monitor as a basic requirement.

  • BI Publisher Report Layout Get Distorted when viewed in different format

    Hi Experts,
    I am facing issue while running BI Publisher Report.
    The Report Layout work fine in one output format (PDF).
    But when the same report is generated in different format it get distorted (HTML,EXCEL).
    Could any one please let me know how to resolve this issue.
    Is there any SR raised for this issue.
    Cheers,
    Andy

    Hi,
    I have faced a similar issue, Finally i created a different template for each output type, and tweaked each template through trial and error till the output it provided was what i was looking for in the specified output format, I had a different template for PDF and a different one for HTML. If I used the html optimised template for PDF out, there were all sorts of alignment issues, etc.and vice versa. As for the date format, you can set the parmeter correctly using the word date format properties.

  • IE pdf viewer kills interactivity in interactive pdf?

    I have an interactive pdf that works fine in Acrobat reader, but when I
    access it via an html link (in the IE pdf viewer) the interactivity
    doesn't work at all.    Is there any way to tell IE to keep it interactive?

    Hi Bernd,
    The interactivity is mostly just a bunch of links that allow navigation within the pdf.   Also, the page orientation where 2 pages display side-by-side (horizontally) is lost and the pages render singly in sequential order (vertically) when viewed in IE.    I was guessing that this was becuase the IE viewer imposes security restrictions.
    Thanks,
    Trey Carroll

  • Difference between pdf and html report format

    Why HTML report printouts truncate from the right-end side, compare to the pdf report format ?, do i need to change anything
    while running report through HTML format

    The printing from html output is majorly affected by browser settings. Once you try to change the left and right margins in page setup before printing, I solved this problem in this way , it may work for you. Let me know if it works or if you overcome it by other ways.
    with regards
    wara

  • Html report shows blank page if pdf report is also

    HI
    I am facing strange problem
    1. Generate any html report with multiple pages.
    2. The first page of the report will be shown.
    3. Now generate the same report in pdf.
    4. Go to the first report again (html report) and try to go to the next page
    (second page)by clicking on the forward arrow > at the bottom of the report.
    I am invoking java to invoke reports

    Hi Karen,
    I would like to provide the document "Report Design: Best Practices and Guidelines " to you and hope it can provide some help.
    Avoiding Blank Pages
    Sometimes, you will see blank pages when you output reports to a physical page format such as PDF or print. Generally, this will happen when the size of the report body exceeds
    the size of the page. To ensure that all the contents fit on a single page, the body width plus the margins should be less than the defined page width. A textbox or other report item can cause the width of the body to exceed the page width, even when the portion
    of the item that exceeds the width has no visible contents. In addition, report items growing horizontally (matrix data regions and images set to automatically Autosize or Fit) can also cause the body to grow.
    Reference:
    <http://technet.microsoft.com/en-us/library/cc966445.aspx>
    Best Regrads,
    Halin Huang

  • Html report shows blank page if pdf report is also generated

    Steps to reproduce
    1. Generate any html report with multiple pages.
    2. The first page of the report will be shown.
    3. Now generate the same report in pdf.
    4. Go to the first report again (html report) and try to go to the next page
    (second page)by clicking on the forward arrow > at the bottom of the report.
    I am using java to invoke reports

    Hi Karen,
    I would like to provide the document "Report Design: Best Practices and Guidelines " to you and hope it can provide some help.
    Avoiding Blank Pages
    Sometimes, you will see blank pages when you output reports to a physical page format such as PDF or print. Generally, this will happen when the size of the report body exceeds
    the size of the page. To ensure that all the contents fit on a single page, the body width plus the margins should be less than the defined page width. A textbox or other report item can cause the width of the body to exceed the page width, even when the portion
    of the item that exceeds the width has no visible contents. In addition, report items growing horizontally (matrix data regions and images set to automatically Autosize or Fit) can also cause the body to grow.
    Reference:
    <http://technet.microsoft.com/en-us/library/cc966445.aspx>
    Best Regrads,
    Halin Huang

  • PDF export for  columns formatted as HTML

    Hello,
    I've created a report having some columns formatted as HTML .
    in the PDF file exported from BI Answers dashboard, HTML tags are shown instead of formatted value.
    (for example : "div style="width:100%;background-color:#FF3300">89.12%</div" instead of 89.92%)
    Any ideas how to fix this ?
    BI version : 10.1.3.3.3
    Thank you.

    Hi dragosv,
    I've also encountered similar problems to that. The OBIEE process does not first evaluate the code before it exports to other tools like PDF and Excel.
    Here are two options:
    1) Submit an SR to Oracle and have them declare it a bug
    2) Print to HTML first, then print the HTML to PDF. It adds a step but at least you can download your document the way you want.
    Best regards,
    -Joe

  • How can i make the report previewer show a PDF file instead of HTML?

    Hi there,
    i made a report which can be called within a form by a button. This report is a PDF-report.
    I also have an option in the application to start the report from the menu. Then i get the Launch Report Form by Headstart. Here i can fill in for Desformat (in the options) PDF and Output to PREVIEW. Still it generates me a HTML report in my browser. How can i make it work so that the PREVIEWER will show me a PDF-report instead of the HTML?
    Kind regards,
    Dave

    You can not use PREVIEW as output type in webbased forms/reports. Try using as output type CACHE or FILE.

  • Problem with NIReport.llb\Print HTML Report using IE.vi on different machines

    We have 5 machines here in our workgroup which have the same state regarding security patches and other system updates. We recently found out that there is a problem with the NIReport.llb\Print HTML Report using IE.vi on the different machines.
    If I would open the VI on MachineA the control could be loaded. If I would open the VI on MachineB the control could be loaded. If I would copy the VI from MachineB to MachineA and open the VI the control could not be loaded. If I would copy the VI from MachineA to MachineB and open the VI on MachineB the control could be loaded. MachineB could load the version from MachineA and MachineB but on MachineA only the own version will load. I have seen that both versions have the same GUID for the Microsoft Webbrowser but are different in some other aereas.
    Since printing HTML Reports is part of the application which will be distributed as application I want to know if someone else have seen such a behaviour or has got problems distributing an application.
    Also I want to know which additional information is stored in an Active-X container about the control beside the GUID.
    We have Win XP Prof SP2 with MS IE 6.0.2900.2180 on all machines in the workgroup.
    Waldemar
    Using 7.1.1, 8.5.1, 8.6.1, 2009 on XP and RT
    Don't forget to give Kudos to good answers and/or questions

    Hi Tom,
    this is the VI <vi.lib>\Utillitiy\NIReport.llb\Print HTML Report using IE.vi copied from a machine that can load and run the VI and it will print. On this machine the control in the VI is white.
    This VI will give the "Control could not be loaded" message on my machine.
    The file shdocvw.dll is 2006-10-23 16:18 size 1.460 KB and I verifyed that both machines have the same version of this file.
    Waldemar
    Using 7.1.1, 8.5.1, 8.6.1, 2009 on XP and RT
    Don't forget to give Kudos to good answers and/or questions
    Attachments:
    Print HTML Report using IE.png ‏11 KB

  • Report shows up in HTML view but blank in PDF view

    Hey
    I have a quick question .
    My report runs fine and shows in HTML view .
    When I click on PDF view it shows up blank and doesnot even show any header footer company logo .
    Any idea/advice ?
    Thanx
    Edited by: pooja... on Oct 14, 2008 8:41 AM

    Hi Pooja,
    It seems u have succeeded in getting your report on HTML. This is with Interactive Reporting.
    In the Dashboard section i have an Embedded Browser with the url set in the properties that returns the xml response. But then we are unable to read or view it. Can you help me with that as i am new to this.
    Thnks & appreciate your help.
    JB
    Edited by: user10454571 on Oct 21, 2008 9:31 AM

Maybe you are looking for

  • This Applescript will correct links & programs for posting

    Since I have been posting to these forms, I have been annoyed by the conversions that are done to my posts. A word surrounded by asterisks gets bolded. When I decide to make a link to a post, I can never remember the exact format. When I posted Apple

  • Getting only Blank Values in Crystal Reports

    Hello Experts, I have crystal Reports on top of R/3. I am using table called EKKO, When I dragged the LIFNR (Vendor Number) in the report, It's bringing only blank values, I checked in SAP and it has 7000 records. For testing I created report with on

  • Charts are not displaying in Webi in BO XI R2

    Hi, i am new for developing the Charts in Webi.i am using BO XI R2.my requirements is as below. Selling price,cost and variance are the 3 measure objects which should be displayed in the Graph (i.e Vertical grouped type). i placed all these 3 measure

  • In FTP server same file name with multiple vesions

    Hi All, My source system is UNIX. in that FTP server they have multiple files with same name  example " abc.dat"; with different versions example"abc.dat;43" "abc.dat;44", "abc.dat;45". . so how to read latest version file like "abc.dat;45"   from se

  • Portrait Photos don't show in Slideshows...

    Okay, so I was making a Slideshow to send to iDVD when I noticed that while previewing the show, none of my portrait photos were showing up. The landscapes, however, were OK. After going back to the portraits, I saw that for every single portrait, a