WebIntelligence report in HTML format

Hello Gurus,
Can we schedule the WEBI reports in HTML format. If so how? I do not see the option to schedule the WEBI reports in HTML format.
We are using BOE 3.1 version.
Thanks in advance,
Navin
Edited by: NR on Jun 5, 2009 9:30 PM

Hi Navin,
The short answer is no. It is not supported by default. Desktop Intelligence does this. I think it is seen as a competition for the InfoView portal. There are however some good SDK examples that you might be able to use.
Regards
Alan

Similar Messages

  • How to export the report in HTML format for desktop application

    Hi,
    i have wrote the JRC desktop application to export the report and i am able to export it in PDF and other formats as mentioned in "ReportExportFormat" API.
    i would like to know is there any API there which can export the report in HTML format.
    i know it would be possible with web based application of JRC, but how can i do it in desktop application?

    There's no mechanism for static HTML pages that displays the report.
    You can use the CrystalReportViewer DHTML viewer, but that's 'interactive'.
    Sincerely,
    Ted Ueda

  • How to generate my report in HTML format

    Hi
    I am using Forms and reports 6i . How to generate a report in Html format.
    Please explain what are the option available in reports and the way to do
    thanks in advance
    prasanth a.s.

    *specify  desformat=html  in cmd line
    refer
    * Forms Reports integration 6i
    http://otn.oracle.com/products/forms/pdf/277282.pdf
    [    All Docs for all versions    ]
    http://otn.oracle.com/documentation/reports.html
    [     Publishing reports to web  - 10G  ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [   Building reports  - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [   Forms Reports Integration whitepaper  9i ]
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    ---------------------------------------------------------------------------------

  • Scheduling deski report to html format fails

    We're running boxi 3.1 SP4 on a Linux redhat machine. When scheduling a deski report to html format to unmanaged disk, the report stays in processing state for 10 minutes and then it goes to failed state with error "Object failed to run due to an error while processing on the Job Server" . Additionally I get the message "The scheduler component failed the object identified by <jobnumber>. The job associated with the object was unresponsive."
    Scheduling to other formats works fine. I have tracing on but there's not any hint in the logfiles. The htm file and it's subdirectories are created on the temporary location /data/procSched/<name>.DesktopIntelligenceJobServer but it's not copied to the configured destination. It is not an issue with permissions, the server has write permissions to the directory.

    Hi Clive,
    since your are in XI R2 you can only try to modify the layout of your report. In XI 3.x a new feauture was introduced, which allows the user to choose between keeping the layout or facilitating further processing in Excel when exporting a document in Excel.
    Regards,
    Stratos

  • Send report in HTML format not in MHTML

    Hi all,
    I need to send report in email in HTML format not in MHTML format.
    Kindly help me.
    Thanks

    Hello,
    As far as I know, we cannot change the rsreportserver.config file to achieve this effect.
    In SSRS, the HTML rendering extension renders a report in HTML format. The HTML rendering extension is the default rendering extension for reports that are previewed in Report Builder and viewed in a browser, including when run in Report Manager.
    There is an article about Rendering to HTML, you can refer to it.
    http://technet.microsoft.com/en-us/library/dd255269.aspx
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Desktopintelligence report in HTML format

    Hello Gurus,
    I have to schedule a Deski report in HTML format. But when I schedule the report, the html format will will be saved in 'section by section' mode automatically.
    Waht properties should I change to save in 'All in one page' mode?
    Thanks,
    Naveen
    Edited by: NR on Apr 30, 2009 8:33 PM

    Hi Naveen,
                      Even I am facing a similar problem while exporting the reports to HTML format. All the sections in the report appear on different pages,and there's no option for getting them on a single page. As of now, there does'nt seem to be a direct solution for this issue, however, I got rid of this problem by using 'Breaks' in my report instead of 'Sections'. For example, if you are having a report which displays section-wise data, and you have applied the section on say, 'Cities' (which means you will get the city-wise data). You can remove the section and drag the 'City' field into the table, and then apply a break on it. You may also enable the option of 'Centre Value Across Break' which would give the report a better look.
    Regards,
    Alok.

  • Webi report into HTML format

    Hi Frns,
    I wanna convert webi report into html format...
    Is there any possibility in bo???
    I'm using sap bo 4.1 sp2
    Regards
    Riaz

    Hi Riaz,
    As per my knowledge Webi report export to HTML format is not possible in BI 4.1
    You can raise a request in SAP IDEA's place
    Refer the below links for workaround solution
    [WebI XI 3.x] Export report to HTML or XML
    Does BOE XI 3.1 supports exporting WebI to XML format?

  • Jasper Report in HTML format

    Hi
    When I try to open the jasper report on browser ,It displays
    the report but not clear.The image does not display on the client.
    below is my code ,please help me......
    MY Code:
    /*3 Preview in HTML format */
    File imagedir=null;
    JRHtmlExporter exp = new JRHtmlExporter();
    StringBuffer sbuf = new StringBuffer();
    exp.setParameter(JRHtmlExporterParameter.JASPER_PRINT, print);
    exp.setParameter(JRHtmlExporterParameter.OUTPUT_STRING_BUFFER, sbuf);
    exp.setParameter(JRHtmlExporterParameter.IMAGES_DIR,imagedir);
    exp.exportReport();
    out.print(sbuf.toString());
    Thanks
    By sathesh

    Alright there is a dedicated ImageServlet(provided in jasper reporting framework) which is used to Link Static image content along with your HTML report content.
    and here is how you have to do it is ??
    is by setting few parameters for JRExporter Object and making use of image servlet provided under jasper libraries.
    ImageServlet configurations in web.xml:
    <servlet>
            <servlet-name>ImageServlet</servlet-name>
            <servlet-class>
                net.sf.jasperreports.j2ee.servlets.ImageServlet
            </servlet-class>
    </servlet>
    <servlet-mapping>
            <servlet-name>ImageServlet</servlet-name>
            <url-pattern>/imageServlet</url-pattern>
    </servlet-mapping>Html Exporter code..
    JRExporter exporter = null;
    JasperPrint jasperPrint = null;
    Connection conn = null;
    String sourceFile = ReportService.getReportSourceFile(request);
    Map map = ReportService.getParameterMap(sourceFile,request);
    String contentType = ReportService.getContentType(sourceFile,request);
    if(contentType.startsWith("text/html")){
    PrintWriter printWriter = response.getWriter();
    try{
       /* Fetching Connection from a Connection Pool VIA a service*/
      conn = DbUtils.getConnection();
      /* Creating a JasperPrint Object*/
      jasperPrint = JasperFillManager.fillReport(sourceFile,map,conn);
    exporter = new JRHtmlExporter();                          
      request.getSession().setAttribute(ImageServlet.DEFAULT_JASPER_PRINT_SESSION_ATTRIBUTE, jasperPrint);
       /* printWriter here is a reference for  response.getWriter() */
      exporter.setParameter(JRExporterParameter.JASPER_PRINT, jasperPrint);
      exporter.setParameter(JRExporterParameter.OUTPUT_WRITER,printWriter);                  
      // gonna set url pattern given for Image servlet with a reponse parameter <url-pattern>/imageServlet</url-pattern> 
      exporter.setParameter(JRHtmlExporterParameter.IMAGES_URI,"imageServlet?image=");              
       response.setContentType(contentType);
       /* Would write the HTML content to ServletStream Provided */
      exporter.exportReport();
    }catch(Exception exp){
         exp.printStackTrace();
    }finally{
      try{
         if(conn != null && !conn.isClosed())
           conn.close();
      }catch(Exception ep){
         ep.printStackTrace();
      }finally{
           conn = null;
           sourceFile = null;
           map = null;
    }For any other issues with report format and others try to go through my post.However, you might have to edit your customized settings in terms of image rendering problems or to some customized implementations.
    http://forum.java.sun.com/thread.jspa?threadID=5203324&messageID=9811077
    Hope that might help :)
    REGARDS,
    RaHuL

  • How to view deski report in html format ?

    Hi,
    I use BO XI R2. I use jsp.
    I just want to know how to view deski report in a html format.
    thanks a lot.
    hatoug

    Since you're using JSP, please post to the Java support forum:
    Java SDK Application Development
    or
    SAP Crystal Reports, version for Eclipse

  • How to remove Pagebreak while printing a Report in Html format

    Hi there,
    I am printing the Report Output as HTML format and I need to avoid pagebreaks ... Is there any way to avoid.
    I did tried PAGESTREAM ... but it prints the next page in a separate file ...
    Can anyone give a solution for this !!!
    TIA
    Vaithy. S

    hello,
    when you use the output-format HTML or HTMLCSS, oracle reports creates a representation of the layout as it would be created on paper in these formats; therefore there are pagebreaks.
    there is no way to switch them off.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • EMail report in HTML format in Background

    Hi all,
    We have a report which sends the output in HTML format to the internet email address. We use the function module SO_NEW_DOCUMENT_ATT_SEND_API1 for doing this.
    When we are executing this in foreground the entire output is available in the HTML file, but when we execute this in background only the last page of the spool request is sent in the HTML file. Please help us in what way we can avoid this.
    There are 5 pages in the report. Please advise us what exactly has to be done.
    Thanks in advance.
    Regards,
    Vivek ...
    Message was edited by:
            Vivek Krishnan Kandasamy

    Hi Vivek,
    have a look at this thread ...
    Issue facing background email attachment.
    Regards
    Sudheer

  • TS3899 I am trying to open a work report using html format on my ipad and it says it is blocked. How do I unblock it?

    Hello.
    I am trying to open a report from work that is in html format and I keep getting an error message saying that html is blocked?? I am thinking I need to adjust some sort of setting, but I am stuck. Any help is appreciated.
    Thank you!

    Maybe it is not html document. It may have html elements in there.
    You say reports, maybe it's in excel or some other formats.
    If it's excel, you have to have some apps that can read the format.
    Apple Pages app can open excel document for example.

  • Email the Output of Report under HTML Format instead of .eps

    Hi to all
    I having Developer 6.0.5.0.2. I want to send an email from
    report (Using Lotus Notes email client) as an HTML attachment.
    Could any one guide me how to do that?
    null

    Set DESFORMAT = HTML in the Parameter Form Builder.(or in the
    system Parameters under Data Model)
    the DESTYPE should be MAIL only then you won't get the .eps file.
    Hope this helps.
    NB
    Kalle (guest) wrote:
    : Hi,
    : In case of Reports Runtime : Edit->Runtime Options->Runtime
    : Values->Format HTML, in Report Builder: Tools->Preferences...
    : Regards
    : Thalamuthu (guest) wrote:
    : : Hi to all
    : : I having Developer 6.0.5.0.2. I want to send an email from
    : : report (Using Lotus Notes email client) as an HTML
    attachment.
    : : Could any one guide me how to do that?
    null

  • Output Report in HTML format thru Oracle Forms. ASAP!!!

    Hi,
    How can i create a HTML output format thru Oracle Runtime Form?
    I have tried using the .REP and i was able to produce the HTML output format but when call the .REP using Oracle Form i was not able to produce the desired output.
    Attach below is the code. Seems like something is wrong with the code
    Thanks,
    Jen
    DECLARE
    pl_id ParamList;
    --subheader varchar2(1000);
    BEGIN
    ** Check to see if the 'tmpdata' parameter list exists.
    pl_id := Get_Parameter_List('tmpdata');
    ** If it does, then delete it before we create it again in
    ** case it contains parameters that are not useful for our
    ** purposes here.
    IF NOT Id_Null(pl_id) THEN
    Destroy_Parameter_List( pl_id );
    END IF;
    ** Create the 'tmpdata' parameter list afresh.
    pl_id := Create_Parameter_List('tmpdata');
    ** Add 1 data parameters to this parameter list
    */ -- subheader is a parameter created in Oracle Reports
    --subheader := :variable.txt_message_yes;
    --Add_Parameter(pl_id,'SUBTITLE',TEXT_PARAMETER,subheader );
    **Pass a Parameter into PARAMFORM so that a parameter dialog will not appear
    **for the parameters being passing in.
    Add_Parameter(pl_id, 'PARAMFORM', TEXT_PARAMETER, 'NO');
    ** Add the account_no parameters to this parameter list
    Add_Parameter(pl_id,'P_ACCOUNTNO',TEXT_PARAMETER,:account_no);
    * Run the report synchronously, passing the parameter list
    */ -- ABC is the report name
    Run_Product(REPORTS, 'c:\Fusion\FusionInvoice.rep',
    SYNCHRONOUS, RUNTIME, FILESYSTEM, pl_id, NULL);
    END;
    null

    Hi there,
    You have to add 3 parameters to param list :
    DESTYPE with value "FILE"
    DESNAME with value of desired filename
    DESFORMAT with value "HTML" or "HTMLCSS" (for cascading style sheets)
    Hope this helps.
    Regards, Kai

  • 10g reports in html format have extra left margin

    I am using the same source .jsp file to create 2 html reports, one using 9i server and the other using 10g server. The report run on the 10g server has a double left margin compared with the report layout and the report run on 9i. When 10g report is printed it chops off the right side of the report. This only affects html output, rtf and pdf work fine.
    Is there any setting I can change in the report properties to stop this from happening?
    Thank You.

    I am running through a servlet with the URL http://our_server:7779/reports/rwservlet?server=reports_saints&report=...&destype=file&desformat=html...
    Thanks

Maybe you are looking for