Reports which generate Excel output do not open under ie8/Oracle Forms

Hello,
we run Oracle Forms (regardless whether under Jinitiator 1.3.1.22(28) or SUN JVM) and generate Excel output with Oracle Reports (web.show_document). This works well under Internet Explorer 6 (ie6) but not under Internet Explorer 8 (ie8).
The effect ist that a new browser window opens and closes very quickly without anything further happening.
I honestly assume that this has not to do with oracle reports but ask this nevertheless in this forum as there might be people which made the same experiences...
I additionally found out that the same problem exists when gerenating excel or ms word output via a db procedure (with http. modules). There I found that suppressing the question (open/save/cancel) before opening a file (via the windows explorer file type association menu) helped with excel and ms word output (but this might be regarded as a not satisfying workaround).
The problem persists with other applications' file types than XLS or DOC which are also correctly registered on the client.
I'm not sure whether mimetypes sent along with the files (which were obviously correct with ie6) play a role in this problem.
Peter

Hello,
Your problem with IE 8 seems to be similar to the one discussed here :
IE7 windows opened and closed immediatly
http://www.experts-exchange.com/Software/Internet_Email/Web_Browsers/Interne
t_Explorer/Q_23304982.html
You can test the solution suggested :
We have found the setting that we needed, under the Internet Options
Security tab, if you select the internet zone, and click the custom level
button, then scroll down to the Downloads section, the first option is
Automatic prompting for file downloads, setting this to enable keeps IE 7
from interfering with this sort of download.
Example with screen shots :
http://www.celt.iastate.edu/webct/securitysettings.html
Regards

Similar Messages

  • Reports to generate excel output

    Update reports 9i to reports 10g, and the reports output to excel they generate error.
    Reports Error Page
    Wed Oct 20 15:10:31 GMT-05:00 2004
    java.lang.NullPointerException
    java.lang.NullPointerException
         at com.evermind.server.http.EvermindBodyContent.setCharacterEncoding(EvermindBodyContent.java:458)
         at com.evermind.server.http.EvermindPageContext.pushBody(EvermindPageContext.java:630)
         at oracle.jsp.runtime.OracleJspRuntime.pushBodyIfNeeded(OracleJspRuntime.java:1385)
         at repuc1_excel._jspService(_repuc1__excel.java:54)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:349)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:604)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:208)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:125)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:534)

    Try adding charset to the content type
    e.g:
    <%@ page contentType="application/vnd.ms-excel;charset=ISO-8859-1" %>

  • Pdf form generated by asp does not open in IE8 after installing Reader X

    started using Reader X last week and when opening a pdf generated by asp it does not work but when I kill the process iexplorer.exe for that window I get:
    "This tab has been recovered. A problem with this webpage caused IE to close and reopen the tab" and then my pdf opens. Thanks for any input or ideas.....

    First of all, thank you for your interest and
    Yes, my asp generates the pdf using fdf. Part of this is:
    Response.ContentType = "application/vnd.fdf"
    Set FdfAcx = Server.CreateObject("FdfApp.FdfApp")
    ' =======  Get/Create FDF and Set Values/Filename
    Set oFDF = FdfAcx.FDFCreate
            oFDF.FDFSetValue "Loc", strLoc, false
            oFDF.FDFSetValue "Comp", strCompN, false
            oFDF.FDFSetValue "Symb", strSymb, false
            oFDF.FDFSetValue "PolNum", strPolNo, false
            oFDF.FDFSetValue "Mod", strMod, false
            oFDF.FDFSetValue "PolHol", strPolHol, false
            oFDF.FDFSetValue "Usr",struid, false
            rs.MoveFirst
            i = 1
            j = 1
            k = linp
            While (i <= npag)
                strData = ""
                while ((Not rs.EOF) and j <= k )
                   strData =    strData & rs.Fields(22).value & VbCrLf
                   'strData = strData & i & " - " & j & " - " & k & VbCrLf
                    rs.MoveNext
                   j = j + 1
                wend
                k = (j + linp) - 1
                if i <= npagaux then
                    oFDF.FDFSetValue "WorData"&i,strData, false
                else               
                    oFDF.FDFSetValue "WorData"&i,"Blank Page Left Intentionally", false               
                end if
                i = i + 1
            wend          
    oFDF.FDFSetFile "http://" & request.servervariables("SERVER_NAME") &  "/pdf/myform.pdf"
    Response.BinaryWrite oFDF.FDFSaveToBuf
    oFDF.FDFClose
    Set oFdf = Nothing
    Set FdfAcX = Nothing
    ' ====== Clean enviroment
    Thanks for your help.

  • Generate Excel Output

    Hi All!
    I would very much appreciate if you could send me the code for generating Excel output.
    Thanks,
    Waqas
    [email protected]

    Hi,
    Here's the code for generating the excel output, you can write this in button press of form which calls the excel report.It automatically opens a new excel sheet , and then it executes the SQL query, after that each rows will get filled with the values.
    First of all you need to makeall the queries in the report in to a single query.
    declare
         application CLIENT_OLE2.obj_type;
         workbooks CLIENT_OLE2.obj_type;
         workbook CLIENT_OLE2.obj_type;
         worksheets CLIENT_OLE2.obj_type;
         worksheet CLIENT_OLE2.obj_type;
         cell CLIENT_OLE2.obj_type;
         args CLIENT_OLE2.list_type;
         rowcount integer;
         i integer;
         cursor c2 is select 1 from dual;
         cursor c1 is /* write your select query that fetches the required values */
    begin
    application := CLIENT_OLE2.create_obj('Excel.Application');
    CLIENT_OLE2.set_property(application,'Visible','True');
    workbooks := CLIENT_OLE2.get_obj_property (application,'Workbooks');
    workbook := CLIENT_OLE2.invoke_obj(workbooks,'Add');
    worksheets := CLIENT_OLE2.get_obj_property (workbook,'Worksheets');
    worksheet := CLIENT_OLE2.invoke_obj(worksheets,'Add');
    rowcount := 0;i:=1;
    for rec1 in c2 loop
    rowcount := rowcount + 1;
    -- For the headings
    args := CLIENT_OLE2.create_arglist;
    CLIENT_OLE2.add_arg(args,rowcount);
    CLIENT_OLE2.add_arg(args,1);
    cell := CLIENT_OLE2.get_obj_property(worksheet,'Cells',args);
    CLIENT_OLE2.destroy_arglist(args);
    CLIENT_OLE2.set_property(cell,'Value','Column 1 Heading');
    CLIENT_OLE2.release_obj(cell);
    args := CLIENT_OLE2.create_arglist;
    CLIENT_OLE2.add_arg(args,rowcount);
    CLIENT_OLE2.add_arg(args,2);
    cell := CLIENT_OLE2.get_obj_property(worksheet,'Cells',args);
    CLIENT_OLE2.destroy_arglist(args);
    CLIENT_OLE2.set_property(cell,'Value','Column2 Heading');
    CLIENT_OLE2.release_obj(cell);
    end loop;
    for rec1 in c1 loop
    rowcount := rowcount + 1;
    args := CLIENT_OLE2.create_arglist;
    CLIENT_OLE2.add_arg(args,rowcount);
    CLIENT_OLE2.add_arg(args,1);
    cell := CLIENT_OLE2.get_obj_property(worksheet,'Cells',args);
    CLIENT_OLE2.destroy_arglist(args);
    CLIENT_OLE2.set_property(cell,'Value',rec1.field1);
    CLIENT_OLE2.release_obj(cell);
    /*null value may create problems,then use the if condition as follows*/
    args := CLIENT_OLE2.create_arglist;
    CLIENT_OLE2.add_arg(args,rowcount);
    CLIENT_OLE2.add_arg(args,14);
    cell := CLIENT_OLE2.get_obj_property(worksheet,'Cells',args);
    CLIENT_OLE2.destroy_arglist(args);
    IF rec1.field2 IS NOT NULL THEN
    CLIENT_OLE2.set_property(cell,'Value',rec1.field2);
    ELSE
         CLIENT_OLE2.set_property(cell,'Value',' ');
    END IF;
    CLIENT_OLE2.release_obj(cell);
    end loop;
    CLIENT_OLE2.release_obj(worksheet);
    CLIENT_OLE2.release_obj(worksheets);
    CLIENT_OLE2.release_obj(workbook);
    CLIENT_OLE2.release_obj(workbooks);
    CLIENT_OLE2.release_obj(application);
    EXCEPTION WHEN OTHERS THEN
         MESSAGE(SQLCODE||' - '||SQLERRM); MESSAGE(' ');
    end;
    Hope this helps .
    Regards,
    Nycy

  • Crystal Report Runtime Error 9.0.Could not open the report

    Hi,
    Getting the Crystal Report Runtime Error 9.0.Could not open the report while Run on Launch Application. Actually in Launch Application, created a link for exe which is having crystal reports. We can open the Crystal Reports from the exe outside B1.
    Note: SAP 2007, Crystal Report 2008 is using.Normally can open crystal report.
    Any help to fix the error is appreciated.
    Thanks & Regards,
    Parvatha Solai.N

    Hi,
    Please post screen shot of error message here.
    Thanks & Regards,
    Nagarajan

  • Excel files are not opening in outlook 2010.

    excel file is not opening in outlook 2010.
    In outlook the excel attached file if its selected the preview is grayed out. not able to open it.
    wat should be done to resolve it?

    Hi,
    Can you download the attachment to local and open it? Does other types of attachment have this issue?
    Please check the following settings:
    Go to File -> Options -> Trust Center -> Trust Center Settings -> Attachment Handling -> Make sure "Turn off attachment Preview" is not selected -> Click "Attachment and Document Previewers" button -> Make sure "Microsoft
    Excel previewer" is selected -> OK -> OK -> OK.
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Oracle Report call Oracle Report to generate single output

    Is it possible for an Oracle Report to call another Oracle Report and generate single output?
    Report one is a form letter and the second report is the accompanying information described in the letter. The reports cannot be merged because the second report is very complex and used by many programs and purposes.
    Using 6i on 10g database, currently migrating to 11g Reports and database.
    Thank you.

    6i is not certified with 10g DatabaseWell, that is not completely true. 6i Even works and is partly certified against 11g, since Oracle Apps 11 is built in Developer 6i and certified against 11g.
    To call a report from a report use SRW.RUN_REPORT.

  • When I export my number file in Excel, I can not open the spreadsheet : Invalid Reference, what's wrong ?

    When I export my number file in Excel, I can not open the spreadsheet : Invalid Reference, what's wrong ?

    "Invalid reference" usually means there is a cell reference in a formula to a cell that does not exist in the document.
    In this case, it could mean that your Numbers document uses a feature that is not supported by MS Excel, and because of that, the document cannot be translated into an Excel file.
    A more specific answer would require a more detailed description of your Numbers document.
    Regards,
    Barry

  • Using office outlook under parallel desktop double click on an Excel attachement does not open the document in Excel

    using office outlook under parallel desktop double click on an Excel attachement does not open the document in Excel.
    double-click opens Excel Office 2011 for mac without the document.
    It should open the document in Excel 2010 for Windows.

    In Parralells, choose the file you want to open.
    Right Click on it and choose Properties.
    In the General Tab you will see "Opens with:"
    Click the "Change ... " button.
    Then choose Excel 2010. The checkbox below should be set to "Always use ... "

  • I have a macbook pro, when I try to open excel it will not open and I get a messages that states "cannot be opened 1712

    I have a macbook pro, when I try to open excel it will not open and I get a messages that states "cannot be opened 1712.

    What version Mac OS X?
    What version Excel?

  • I need to install iWork 09 so I can open the many pages document files that will NOT open under the new pages 5. Mavericks will not accept an install from my iWork's 09 CD. How do I get around this?

    I need to install iWork 09 so I can open the many pages document files that will NOT open under the new pages 5. Mavericks will not accept an install from my iWork's 09 CD. How do I get around this?

    Hi, I'm helping StringSinger2 with this problem.
    The previously installed version is Pages 3.0.3 (the same as from iWork 08). This version (Pages 3.0.3/iWork 08) is incompatible with Pages 5.
    That is why it would be helpful to install iWork 09, which is the version between the two. It will open the older 08 files, and its saved files are readable by the new Pages5.
    SO...
    When I try to install iWorks 09 from my retail DVD the error message is "the installer is damaged". (I know the dvd is good, I installed iWorks09 to my laptop today.) Is the "installer" part of the system files? And - If that is damaged is there a patch for that?
    Many Thanks!

  • The option "Build-in Output" does not appear under my Sound preferences

    The sound stopped coming out of my built in speakers.  The sound does come through headphonse.  The option "Built-in Output" does not appear under my Sound preferences.  How can I restore the Built-in Output option under my Sound preferences.  Currently the only option that displays is "Digital Out".

    Please stop sticking things in your audio ports. you can very easily damage the switch. There is a simple procedure that usually will switch your mac back to internal speakers.
    1. open the Audio MID setup app in your utilities folder.
    2. Select 'built in output'
    3. try the 'source' pull down menu. probably it will read 'digital out' with no other options.
    4. control click the 'built in output' option on the left and select 'configure speakers' from the pull down menu.
    5. a drop down window will open. Make sure 'Stereo' is selected and click 'done'
    6. The Source pulldown menu should now read 'internal speakers'
    7. Close the Audio MIDI setup app and get back to work

  • Videos with avi format do not open under Lion and receive "missing codec" message.  Worked fine prior to Lion installation.

    Videos with avi format do not open under Lion and receive "missing codec" message.  Worked fine prior to Lion installation.

    http://perian.org
    You may also need to install QuickTime Player 7.6.6 to open the files.

  • Open Dialog in oracle forms

    Dear Friends,
    I am new to this discussion forum and i would like to know how to get the windows open dialog from oracle forms. I want the user to select the text file available in the system using the open dialog.
    Thanks in advance
    Mohan

    When you are using Forms 6i in client/server mode, use the built-in
    GET_FILE_NAME (see manual for details).
    In 9i or web mode, you need a java bean.

  • Problems in generating excel output

    Hi all,
    I'm facing a problem submitting a report with XML output (XML Publisher 5.0.1). I created a RTF template in order to generate an excel output but when I launch the concurrent, its status after few minutes becomes "Warning" logging java.lang.OutOfMemoryError. The strangest thing is that the PDF output generates normally without errors or warnings.
    I've found on metalink a note in which they suggest to create a configuration file (xdo.cfg) where i've declared a temporary folder in order to split the XML in two parts to allow the XDO to create correctly my excel output....but it didnt work! :(
    After that I added to my concurrent execution options the string "-Xmx512m" to increase the memory for that particular task (even if i think that 128 mb for a XML file of 5 MB are more than necessary)... but no results (in this case i've had another error "java.io.FileNotFoundException: /opt/app/oracle//admin/out//o2260792.out (No such file or directory)" ).
    Can someone help me??
    Is it a normal behaviour?? It seems to be a joke, cause in metalink they suggest everybody to apply patches and patches!!
    Thx all

    Hi Nisha,
    Refer to that link.....May be it will helpful for you....
    Are You All Able to get the Output In EXCEL Format
    Otherwise you can do one thing......Add one more Viewer option for XML type data... Most probably earlier For viewing the XML data you are using Browser... So by default whenever you are trying to see the output it is opening it in Browser....
    Now add one more Viewer option For XML as Microsoft Excel......
    So After making two viewer option for XML data whenever you will try to see the output of XML data it will ask you...Viewing option...1.Browser 2. Excel
    Choose Excel here it will not give you any error and you will be able to open the output in Excel format.....
    Regards
    Ravi

Maybe you are looking for

  • Getting #while using gui_upload

    im using gui_upload to upload data into internal table itab this itab has field of type string my input text file has values ++;100;0101+; but when i m using gui_upload i m getting extra value # in my internal table. plz tell me why this # value is c

  • How can I make a bootable Mavericks SD Card or DVD?

    How can I make a bootable Mavericks SD Card or DVD?

  • No audio out through Mini Displayport?

    Last night I hooked up my first-gen MBA to my plasma TV using a connector that converted the Mini Displayport to HDMI. The movie I streamed from Netflix looked great. One problem -- no audio. I guess there's no audio out through the Mini Displayport?

  • Track the changes in iw32

    Hi, i implemented a zbadi for iw32 ,that is for Creating new Purchase Requisition if Order contain item with Requisition- which is in released Status.now i am trying to add some code to give the pop-up message for existing entries that wont be modifi

  • IPHOTO 9 PARTIAL BACKUP

    After a bad experience using Time Machine with an external hard drive I decided to back up my photos to 2 DVDs, which I did. I would like to periodically backup only those items in iPhoto that have been added since the original backup, how do I selec