Crystal Report as HTML

Hi,
I am very new to crystal reports. I created a report and was able to launch the same in browser. When I see the report in the browser, it has the toolbar on the top and gets displayed more or less like PDF. Is there any way, I could display my report as plan HTML?
Please suggest.

Hi Jack,
There is no HTML export option in the java sdk and HTML interpretation is not that good and there are no plans to add export options to html through java sdk.
You can acheive it through Designer as Follows:-
> Open the Crystal report in designer, Click on Export tab on the toolbar > Select HTML option on the dropdown menu > Click Ok.
Goto to folder where you exported the report > you can see Html rendering there.
let me know if this works
Regards,
Rameez
Edited by: ramzraja on Oct 11, 2011 2:42 PM

Similar Messages

  • Exporting Crystal Report to HTML is not working in Windows 7

    Hi Sir,
    I am trying to export Crystal Report to HTML format using VB.NET code. Functionality is working fine at Windows XP Environment (Save to Disk, Open an Application and Email Attachment). But the same functionality is not working at Windows 7 Environment (both 32-Bit as well as 64-Bit).
    Below is the code to Exporting Crystal Report to HTML in VB.NET.
    Dim CrDiskFileDestinationOptions As New DiskFileDestinationOptions
    Dim CrFormatTypeOptions          As New HTMLFormatOptions
    Dim vFormat As Integer
    Dim CrExportOptions As New ExportOptions
    Dim vRdReport As New ReportDocument
    Dim sfd As SaveFileDialog
    Dim vFileName As String = Nothing
    vRdReport = vRptSource
    sfd = New SaveFileDialog
    If Not (vRptPath = "") Then
        sfd.InitialDirectory = vRptPath
    End If
    sfd.Filter = "Webpage, Complete(.htm;.htm)|.htm|Web Archive, Single file(.mht)|.mht|Webpage, HTML only(.htm;.html)|.html"
    If sfd.ShowDialog = DialogResult.OK Then
        ' Set the disk file options.
         CrDiskFileDestinationOptions.DiskFileName = sfd.FileName.ToString()
    Else
         Return
    End If
    CrExportOptions = vRdReport.ExportOptions
    CrFormatTypeOptions.HTMLFileName = vFileName
    CrFormatTypeOptions.HTMLEnableSeparatedPages = True
    CrFormatTypeOptions.HTMLEnableSeparatedPages = True
    CrFormatTypeOptions.HTMLHasPageNavigator = True
    CrFormatTypeOptions.UsePageRange = True
    With CrExportOptions
                        .ExportDestinationType = ExportDestinationType.DiskFile
                        .ExportFormatType = ExportFormatType.HTML32
                        .DestinationOptions = CrDiskFileDestinationOptions.DiskFileName
                        .FormatOptions = CrFormatTypeOptions
    End With
    vRdReport.Export()
    Catch ex As Exception
            MsgBox(ex.ToString)
    End Try
    Code working fine at Windows XP, But it is not woking in Windows 7 environment.
    Please can anyone share your valuable thoughts or ideas reg. this.
    Thanks in Advance
    Deivanayaga Perumal D.

    user13509659 wrote:
    Run this code to reproduce the issue.Which issue?
    It looks like inheritance is broken in the component hierarchy for JFrame in Windows 7 JDK 1.6.0_23-b05. The only thing remotely related to inheritance in your code snippet is the WindowListener, which does little. See camickr's advice about built-in exit management.
    EDIT - using the post title as a clue, I realize you may be talking about the component hierarchy, and whether the contentPane's background is visible through the upper layers. Instead of guessing, I'd prefer you describe your "issue" accurately (observed vs expected behavior).
    Edited by: jduprez on Feb 10, 2011 1:01 PM

  • Help needed  while exporting crystal reports to HTML file format using java

    Help needed  while exporting crystal reports to HTML file format using java api(not using crystalviewer).i want to download the
    html file of the report
    thanks

    the ReportExportFormat class does not have HTML format, it has got to be XML. Export to HTML is available from CR Designer only.
    Edited by: Aasavari Bhave on Jan 24, 2012 11:37 AM

  • Export crystal report to html in java

    Hello Friends,
    Could you please tell how how can i export my crytsal reports to html in java.
    Thanks & Regards,
    Aru

    Thansk for your reply.
    Is there any workaround to implement html export of crystal report in java.
    If not when will this be available in java sdk.
    Many Thanks
    Aru

  • Drill-down options on exported Crystal reports (PDF/HTML)

    Is it possible to drill-down on the exported crystal reports in PDF/HTML format?

    PDF format does not support drill-down. 
    PDF format supports bookmarking to specific locations in the document, but not something refined as drilling.
    Sincerely,
    Ted Ueda

  • Crystal Reports on HTML-DB

    Hello Everybody,
    sorry i don´t know where i should post this message.
    I´ve got a task.
    We want to integrate Crystal Reports on our HTML-DB project.
    Situation:
    We´ve got a html-DB project which is able to connect to our oracle database.
    We want to create a site where you can enter for example Date´s and Numbers. These entriees would send to the specific Report and the Report would be opened in a new window.
    Is this possible? How can i make this?
    Thanks for help

    A open Source tool is there which can help you in reporting.
    It may not be help to make complex reports but simple ones can be done with that.
    Just watch out
    http://ireport.sourceforge.net/
    Bye for now
    CSJakharia

  • Display HTML code in Crystal Reports

    We have a field in the database in which the data is encoded HTML, it includes links to images.  I have tried to use the RTF/HTML interpretation option for the field but it doesn't work.  I saw on the other thread that there's limitation to displaying HTML - I am using Cyrstal Reports XI.  So the crysal can't understand img tags correct?  I am allowing users to do just about anything with HTML so it's hard to find a workaround if the we have to limit the tags.  Would this issue be fixed in the future?  Any piece of advice how to handle this would be great!
    Thanks.

    Hi Pizzaz,
    The HTML tags that are supported by Crystal Reports are:
    " html
    " body
    " div (causes a paragraph break)
    " tr (causes only a paragraph break; does not
    preserve column structure of a table)
    " span
    " font
    " p (causes a paragraph break)
    " br (causes a paragraph break)
    " h1 (causes a paragraph break, makes the font bold
    & twice default size)
    " h2 (causes a paragraph break, makes the font bold
    & 1.5 times default size)
    " h3 (causes a paragraph break, makes the font bold
    & 9/8 default size)
    " h4 (causes a paragraph break, makes the font bold)
    " h5 (causes a paragraph break, makes the font bold
    & 5/6 default size)
    " h6 (causes a paragraph break, makes the font bold
    & 5/8 default size)
    " center
    " big (increases font size by 2 points)
    " small (decreases font size by 2 points if it's 8
    points or larger)
    " b
    " i
    " s
    " strike
    " u
    And the supported HTML attributes are:
    " align
    " face
    " size
    " color
    " style
    " font-family
    " font-size
    " font-style
    " font-weight
    Hope this helps you!
    Regards,
    Anindita

  • Crystal Reports for Eclipse - Builds wrong query for Ingres

    An Ingres user tries to use Crystal Reports for Eclipse with Ingres database. I am attaching here-with the related Ingres forum posting (  http://community.ingres.com/forum/database-drivers-apis/2567-jdbc-crystal-reports-eclipse.html ). Based on further research it appears that the crystal reports engine generates a wrong SQL query for Ingres when the table fields are dragged and dropped from the Field Explorer view to a newly created crystal report. Examining the contents of the table from the Data Explorer view seems to work just fine. Any thoughts/pointers on this issue is greatly appreciated.
    Regards,
    Usha

    Please re-post if this is still an issue to the Java Development - Crystal Reports Forum or purchase a case and have a dedicated support engineer work with you directly

  • Crystal report merge module

    Hi Members,
    We have an application developed in Visual Basic6, MSAccess(Datastorage) and Crystal Reports11 (for reporting), and working fine since years.
    Now, we have developed the same application using Labview 7.1.
    We are using Crystal Reports Ver.11 for report generation, and working fine. (Had to do this because we have invested a lot of $ for Crystal Reports.)
    Now we want to distribute the software to our customers by giving them the setup. We are sucessfully able to generate the setup of Labview application and working fine on the customer PC, but it gives problems when generting reports on the customer's PC. We studied the documentation of Crystal reports, and found that they have Merge modules that needs to be included in the Setup. We have done it sucessfully in VB6, using MS-Installer, because they support including .MSM files directly.
    We would like to know, how we can include those .MSM files of crystal reports in Labview Application builder, 
    or 
    how to include these .MSM files into our setup cd that is to be given to our customer.
    Thanking you,
    with best regards from,
    Kiran V Sutar
    Mumbai, INDIA.
    P.S. : I have also posted this question on other forum at : http://forums.lavag.org/Crystal-Report-t13349.html
    I hope this does not offend anybody, Since I am desparate to get a solution to this.

    Sorry for the late reply. Just got back from work. I asked the previous developer. They told me they're using .NET to call the Crystal Report 2013 in VF. Yes we use the SAP Crystal Reports Developer Version for Visual Studio.NET. When i check they reference this C:\Program Files\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\dotnet\CrystalDecisions.CrystalReports.Engine.dll. Back from my previous concern.
    My concern is when i'm going to deploy my application to my client.Will it work if i'm going to add the merge module file to my package from this link SAP Crystal Reports, developer version for Microsoft Visual Studio: Updates & Runtime Downloads? Because it say its for Visual Studio and Framework 4.0.
    Do i really need to change my target framework to 4.0 in VS2010 and add the framework 4.0 dependency in my package?
    Thank you for your reply......

  • Script Error on opening Crystal Reports

    Hi
    In the last couple of months a few computers in my office with Crystal Reports are having a few problems. The main one is on opening the program, I get the following error message:
    Script error
    Line 0
    Position 1
    <!DOCTYPE HTML PUBLIC"-//W3C/DTD HTMAL 3.2 Final//EN">
    Since this has been happening, I have noticed that Crystal will throw unhandled exceptions and just shut the program on more complex reports. It also cant check for updates.
    I was just wondering whether this was anything to do with a Microsoft update or whether there is a fix for this problem.
    I have Crytal Reports Developer Product Version 11.0.0.895 (I cannot run any updates) on Microsoft XP Pro.
    I would be grateful for any ideas how I can solve this issue.
    Thanks
    Nic

    Hi niceastham,
    Check the following thread
    HTML Preveiw for Crystal report
    Re: HTML In Crystal Report
    Re: HTML Interpretation Behavior
    *Close the thread if issue solved.
    Regards
    Jambulingam.P

  • Crystal Reports (VS-2005). Service Pack for Windows 2008 Server

    I had issues with reduced font size on Export and Printing. On a PC with Windows XP SP2 installed, I made registry changes as recommended in this post:
    [Font size decreases when exporting to PDF (Crystal Reports)|http://mdn.morovia.com/kb/Font-size-decreases-exporting-PDF-Crystal-Reports-10053.html]
    Prior to making registry changes, I also installed Crystal Reports SP1 for VS-2005. After this, everything seems to be working fine.
    But I still have this Reduced Font Size issue on my Server with Windows 2008 R2 Enterprise installed.
    I installed the same Service Pack and made the registry changes, but the changes don't seem to appear. It is still showing Reduced Fonts on Export and Printing. My server is also running Visual Studio 2005.

    I concur with Bhushan;
    It may or may not work with windows server 2008 .
    One idea;
    Use [Process Monitor|http://technet.microsoft.com/en-ca/sysinternals/bb896645.aspx]. Look at the procmon logs and see if the registry key is being looked at \ accessed by the report engine.
    Other than that, upgrade to a version of CR that supports the OS is your only option.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • HTML View Error in Crystal Report 2008 Designer

    Hi,
       I am getting an Error when i am trying to see the HTML Preview on the Crystal Report Designer. but, It is working Properly From CMC.
    I was getting the following Error.
    "Failed to access the HTML Server Page
    Contact your system administrator and make sure the BOE servers are running properly/
    Also make sure that the default viewer URL is set Properly in the CMC of BOE
    You can set the Default Viewer URL by following Steps
    1) Log into the CMC
    2) Clicl the APpplication Link.
    3) On the applications page Select CMC, CLcik the Manage menu, A=and Select Processing Settings.
    4) In the set default viewerURL, the URL Should be similarto the fllowing:
    http://[hostname]:[portnumber]/OpenDocument/Opendoc/OpenDocument.jsp?sIDType=CUID&IDocID=O%SI_CUID%"
    Kindly let me know how to resolve this issue. It was working properly. Thanks for your support in advance.
    Regards
    Shiva,

    It is still an issue for me.  I have a new install and am using WebElements to improve my reports.  I am new to 2008 Server (OEM version) so it's probably something very basic.  When I do a submit it shows a path of:
      BOE/OpenDocument/Opendoc/OpenDocument.jsp?sIDType=CUID&IDocID=O%SI_CUID%
    I don't even have a BOE folder.  My setting as instructed on the page is correct.  I have tried making changes but then the HTML preview doesn't even load the 1st page.  That leads me to believe that the link is correct regardless of what debug says.  Unlike other posts I have seen, my pages do not work in InfoView.  After hitting submit I get:
    http//servicedeskcrs:8080/OpenDocument/opendoc/openDocument.jsp?sType=rpt@sDocName=Resolution%20Report.rpt&lsSSelect1=1
    Notice that there is no : after http.  I have a feeling it is in a setting somewhere but I can't find it.

  • How Do I Display HTML Formatted Text From A Data Table In Crystal Reports?

    I'm creating reports in Crystal XI.  The information being displayed in the reports comes from data tables where the text is formatted in HTML.
    I've worked with Crystal Reports enough to know that HTML text pulled from a data table doesn't appear in Crystal the same way it does in a web browser.  Crystal Reports ignores all the tags (...unless I'm missing something...) and just displays the text.
    Someone far more Crystal savy than I (...who I don't have access to...) came up with a Formula Field workaround that tricks Crystal Reports into displaying some basic HTML tags.  Here's that workaround:
    <!--
    stringVar TableName := ;
    TableName := Replace (TableName, "<ul>","<br> <br>");
    TableName := Replace (TableName, "<li>", "<br>   &bull; ");
    TableName := Replace (TableName, "</li>", "");
    TableName := Replace (TableName, "</ul>","<br> <br>");
    TableName := Replace (TableName, "<a", "<u><font color='blue'");
    TableName := Replace (TableName, "</a>", "</font></u>");
    TableName
    -->
    QUESTION - Does any similar workaround exist so I can display an HTML Table in Crystal Reports?  If not, is there any way to display HTML formatted text from a data table in Crystal Reports as it would appear in a web browser?

    Hi Steven,
    To display html text in Crystal Reports follows these steps.
    1. Right click on the field and select Paragraph tab.
    2. Under 'Text Interpretation' select 'HTML Text' and click OK.
    I have tried using the way,but it never works.So reply me if there is any way to solve the issue

  • Using HTML script in Crystal Reports??

    Can anyone let me know how to use HTML scripts in Crystal Reports?
    I just need to develop report using HTML so that the output of the report will be in RIch text fomat

    Hi,
    You can't design a report using HTML script.  I'm not exactly clear on what you want to do but if you have an HTML app, you have to design the report in Crystal and from your application, call the viewer.  This will allow you to have the report appear in your program. 
    If you are talking about formatting the report, you can set each object as a class in your CSS and call it from your program. 
    I guess a little more information on what you are trying to accomplish may help answer your question more directly.
    Thanks,
    Brian

  • Adding custom buttons to crystal reports html viewer

    Hello,
    I'm using crystal reports for eclipse and I have a time chart in my report that is displayed with html viewer. I need a button bar to navigate on this chart e.g. the button which adds values to chart for the next month.
    Is it possible to add custom buttons to the button bar of crystal reports viewer ?
    Thanks in advance.
    Greetings,
    Nikolas

    Dear Shashidhar,
    regarding your request I have to inform you that the ECL Viewer is developed by a third-party vendor company and so from SAP point of view there is no chance to enlarge the buttons for redlining in the ECL Viewer.
    Best regards,
    Christoph

Maybe you are looking for

  • Using Sum field in Sap script

    Hi all, I am trying to add content of field (Tax VAT) in sap script and put into another symbol using following command /:SUMMING program symbol INTO sum symbol but after running me22n tcode to display the PO error occured <b>Overwriting a protected

  • HT6154 i have the wrong email showing up on my Iphone 4s

    How can i remove the email adress from the iphone  it is wrong one

  • How can I insert photos to excel documents from iPad?

    I need to find a way to edit excel docs from my iPad. I have found numerous apps that work great. The thing I'm having trouble with is editing or inserting images or art into the spreadsheets as you can with excel.

  • Xml error message

    Hi, im using file inbound adapter and done all the configuration in repository and directory when i start the adapetr engine i get the following error Error when determining inbound interface. No inbound interface found for sender XI1 and outbound in

  • How to add songs to iphone

    iTunes 11 64bit is really inconvenient. cant find where to add remove songs to iphone manually. cant add remove files to iphone manaully.