Report won't run for mimetype=application/vnd.ms-excel

Hi,
My customers need to run reports in excel and type in parameters into the parameter from. The URL is:
http://myServer/dev60cgi/rwcgi60?xyz+server=Repserv+report=rptName.rdf+destype=cache+paramform=yes+desformat=delimited+mimetype=application/vnd.ms-excel
The parameter from shows up and all the LOVs are there, the reset botton works, the Submit Query botton only shows Submit (NO QUERY). The report won't run when I click on Submit botton.
But it works perfectly if no mimetype=application/vnd.ms-excel in URL
Can anybody help me to fix this ?
Thanks

The mimetype parameter was only introduced in 6.0.8.10 and above. What version are you running ?
Thanks,
Danny

Similar Messages

  • Movies won't run (for me)

    Movies uploaded to "Me" from my Canon Powershot Pro 1 won't run for me when I access the gallery page. I get a Quicktime formatted black screen with controls, then a message to download some more software.
    Which software do I need? Why will the run OK in iPhoto and not here?
    Thanks in advance,
    Dave Wilson

    Thanks for your response. I hate to be so dense, but I don't have a clue as to what an AVI container is.
    Looking forward to hearing from you.
    Dave

  • Application/vnd.ms-excel dropping leading 0's

    I have a jsp page that successfully displays my data in an excel window on the browser. My user then will cut and paste the data from the screen to Excel running on their desktop. My problem now is the leading zeroes are dropping off. The data being passed are String objects and are being passed as such. Is there any info regarding formatting that allows one to put a special character in the String object to keep the zeroes. I have tinkered with placing a single quote into the String and it works, but when cut and pasted to Excel running on the desktop the sinqle quote remains. I cannot find any docs that discuss how to format the cells in the browswer.
    javaembryo-
    code sample
    <%@ page language="java" contentType="application/vnd.ms-excel" %>
    <td><%=LawsonJspUtil.print( modifyRecord.getSubmitStatus() ) %></td>
    The LawsonJspUtil.print() method takes a String object, checks for null and returns a String object. If the String is null, it outputs a space to fill the column. I could use this method to properly format the column to keep the leading zeroes.

    Wrote a small program for you:
       public boolean isString(String s) {
          if (s==null || s.length()==0) return true;
          for (int i=0;i<s.length();i++) {
             if (s.charAt(i)<'0' || s.charAt(i)>'9') return true;
          if (s.startsWith("0")) return true;
          return false;
       }This little gem will return true if a string contains non-numeric digits, it will also return true if the string contains all digits but starts with a zero.
    ;o)
    V.V.
    PS: don't forget the dukes if this helps!

  • MIME TYPE ; application/vnd.ms-excel

    HI
    i have bsp page which i have declared mime type application/vnd.ms excel the idea is to download the entire contents in local machine . when i click generate excel i get 3 buttons open ,save ,cancel. how can i capture the event open in the page .a sample code will be very helpfull
    reagrds
    Prasun

    Hi
    This is sample code need to be declared in the OnInputProcessing an event for an ID:
    data:
      w_event type ref to cl_htmlb_event,
      w_obj type ref to object,
      w_mod type ref to cl_htmlb_inputfield,
      w_module type string.
      data:
       tv type ref to cl_htmlb_tableview,
       tv_data type ref to cl_htmlb_event_tableview.
      call method cl_htmlb_manager=>get_event
      exporting
        request = runtime->server->request
      receiving
        event   = w_event.
      case w_event->id.
      when 'open'.
        call method cl_htmlb_manager=>get_data
          exporting
            request = runtime->server->request
            name    = 'inputfield'
            id      = 'module'
          receiving
            data    = w_obj.
           w_mod ?= w_obj.
           w_module = w_mod->value.
    endcase.
    'open' this open you need to declare in HTMLB  Button Tag with Option ID...in this way as soon as you click the Button OPEN the Event will be triggered
    Regards,
    Rajani

  • Application/vnd.ms-excel

    Hi!
    I want to display(open) an excel file from a java class but I have a problem.
    I am using the code as below:
    setContentType("application/vnd.ms-excel");
    and it works.
    The problem is that i want to visualize datas from a query.
    One of this datas is the italian CAP (postal code) that sometimes starts with 0. For examples: 09100.
    Well, excel file does not show the first zero although the field is a string,.
    someone can help me?
    Thank you!

    Wrote a small program for you:
       public boolean isString(String s) {
          if (s==null || s.length()==0) return true;
          for (int i=0;i<s.length();i++) {
             if (s.charAt(i)<'0' || s.charAt(i)>'9') return true;
          if (s.startsWith("0")) return true;
          return false;
       }This little gem will return true if a string contains non-numeric digits, it will also return true if the string contains all digits but starts with a zero.
    ;o)
    V.V.
    PS: don't forget the dukes if this helps!

  • How to get at a mail of MIME type application/vnd.ms-excel?

    My java proggie has to deal with an email sent with Outlook '97 (don't ask me why it has to be that) and this email has the following header fields (see below). Now, my program works fine if the email has MIME type multipart/mixed. So, how do I have to do to handle an email of MIME type application/vnd.ms-excel (outline of logic or even some code snippet will be greatly appreciated)?
    Received: by chk_exchange6.whatever.local
         id <01C83718.A96E9AC0@chk_exchange6.whatever.local>; Wed, 5 Dec 2007 16:27:24 +0800
    Message-ID: <E839E45C64CF7E4D9E4E8A334B79363001F0DB62@chk_exchange6.whatever.local>
    From: "somebody" <[email protected]>
    To: "me" <[email protected]>
    Subject: excel attached
    Date: Wed, 5 Dec 2007 16:27:24 +0800
    MIME-Version: 1.0
    Content-Type: application/vnd.ms-excel;
         name="nevermind.xls"
    Content-Transfer-Encoding: base64
    Content-Disposition: attachment;
         filename="nevermind.xls"
    Edited by: dickensl on Dec 5, 2007 11:47 PM

    Depends on what you want to do with it.
    If you want to access the data in the Excel spreadsheet
    and make sense of it, you're going to need some
    Java classes to interpret an Excel spreadsheet.
    Good luck on that. :-)
    If you just want to save the content in a file, as if it
    were an attachment, use msg.getInputStream()
    and copy the data to a file, like this:
            OutputStream out = null;
            InputStream in = null;
            try {
                out = new BufferedOutputStream(new FileOutputStream(file));
                in = msg.getInputStream();
                byte[] buf = new byte[8192];
                int len;
                while ((len = in.read(buf)) > 0)
                    out.write(buf, 0, len);
            } finally {
                // close streams, but don't mask original exception, if any
                try {
                    if (in != null)
                        in.close();
                } catch (IOException ex) { }
                try {
                    if (out != null)
                        out.close();
                } catch (IOException ex) { }
            }

  • Min Max planning report - ability to run for specific vendor

    Hi,
    We have a unique requirement wherein business users would like to run min-max planning report for a specific vendor. Vendor here is item sourcing vendor. We are on R12 12.0.4. This version of applications doesnot support sourcing vendor as the min-max report parameter.
    Other than setting up item category for ASL vendor, i can't think of any other easy way to accomplish above requirement. Please suggest workaround for above requirement.
    Thank you

    If you have to do this, here is a complex workaround.
    Create a request set that contains a custom program as first stage and the regular min-max as the second stage.
    The custom program accepts vendor name as a parameter and disables min-max planning flag for all items EXCEPT those that are sourced from that vendor.
    Then the 2nd stage runs and creates requisition.
    You may add a 3rd stage that resets the min-max planning flag.
    Make this program incompatible with itself so 2 users won't run it at the same time.
    Hope this helps,
    Sandeep Gandhi

  • Adobe Photoshop CS6 won't run, problem with Application Manager

    I've now got three Adobo Photoshop CS products on my MacBook Pro, the latest is CS6 which won't run.
    I own Photoshop CS3, I just happen to install the CS5.x suite today, which runs during the trial period (30 day, today is day #1).
    I then see that PSCS6 is out so I install that and get an error dialog.
    Adobe Photoshop CS6
    Adobe Application Manager, required to verify your license, is missing or damaged.
    Please download a new copy of Adobe Application Manager from http://www.adobe.com/go/applicationmanager.
    I go to that URL, run the new application manager and get that same dialog box when I try to run CS6.
    When I did the CS6b install it asked for my Adobe ID/password and I entered that and the install completed. So I'm not sure what's going on.

    Hi, Using OSX Lion...was getting the same AAM errors.
    I hope my "fix" is of help:
    During one installation attempt I noticed that it was using an Adobe Application Manager here:
    ~User/Applications/Adobe/OOBE/PDApp/core/Adobe Application Manager
    It is version 6.0.236.0 and the installer deletes it after the install. The download page only has version 2.
    So during my last install attempt, I grabbed a copy of that OOBE directory -- to catch the support files -- before deletion.
    Did not work in user Applications folder, but when I copied it in the location of AAM 2, it works.
    The full location is as follows (I renamed the original OOBE folder as a back-up):
    HD/Library/Application Support/Adobe/OOBE/PDApp/core/Adobe Application Manager
    Authorization works, and software update seems to...however, uninstall can't use this method.

  • Report won't run in infoview

    I have a Crystal Reports 11 report that will run in designer but won't run in infoview.  In designer it takes about 20 seconds to run but in infoview it never finishes.  I've verifyed the database and it's the same databse, and user as other reports.   What else can I check?

    Ok,
    First check your services and make sure that the crystal report services are up, it sounds like one of them might be down (you will need admin rights for that - or as someone with admin rights).
    If they are all up - please make sure that your infoview server version matches crystal reports version - if not - this might be the reason.
    Hope I managed to help you out.

  • How to check process is running for an application pool on remote server

    Hi,
    I am creating console application which will check whether WCF is up and running. I am thinking of the approach whether w3wp prcoess is running for a particular application pool using some .net API. We have different website with different application pool.
    I know we can use metatdata or any operation inside WCF service to test svcutil or proxy methods but i don't want that. Please help.
    Thanks,
    Dhanaji

    I assume your goal is to simply provide a heartbeat to periodically make sure that a service is running?  There is no real guarantee that a service will be available until you actually try to call it.
    Also please realize that you're going to impact the server's performance by doing this.  IIS is set up to idle out apps that aren't being used. If you periodically poll the service then you will prevent IIS from doing this.  The result will be
    that you'll see a WCF service running even if nobody every uses it.  Is this really what you want?  Hence if you have a lot of WCF services being checked then the server is wasting resources on services that might not be needed. 
    IIS doesn't work like a normal application.  It hosts your WCF service.  You should let IIS handle the lifetime of your service rather than using a heartbeat.  It would take a catastrophic failure for IIS to be unable to start a service when
    a request comes in.  The app pool itself may be running even without the WCF app running. An app pool is a collection of apps so if any app is running then the pool is running.  Checking the pool tells you nothing about the apps in it.
    You mentioned that you don't want to use IIS metadata or a proxy but that is the only 2 options you have.  Personally I would just hit the endpoint with a HttpWebRequest and verify you get a response but the IIS metadata would be a close second.
    Michael Taylor
    http://blogs.msmvps.com/p3net

  • Flash won't run the flex application (swf)

    I'm Italian so my english isn't perfect....
    I try to run a flex application (swf) on a pc without flash
    player 9 (8.5) (on firefox and IE)....the flex application ask
    correctly if i want to install the flash player....but anyway,
    after the installation....the flex application doesn't run....
    also, i try to restart the pc....but....swf doesn't
    run.....anybody have the same problem ??

    Hung program: command-option-esc
    Shut down: hold down power button for 5-10 seconds.

  • Webview Peripheral reports won't run

    I have a 7.5.10 Webview server that has been operational for years, now all Peripheral reports will not run and Peripheral lists are empty.   All other Webview  real time and historical reports work fine from this server.  I re-installed Webview and verified user permissions/settings.  Also ran PATCHPBL and deleted compiled reports folder.   Experienced the same results, all reports run fine except Peripheral reports.
    The only error  message I get is:   DBERROR:  SqlDbCode=208, SqlErrorText=Select error: SQLSTAT = S0002 [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name 'Peripheral'   
    I have never experienced an issue with just one type of report, any suggestions? 

    check if your CrystalReport Job Server is running.
    Regards.

  • 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

  • Vendor evaluation report to be run for previous period

    Hi,
    Is the possible to run the Vendor evaluation report for back date.
    i.e. if the period of evaluation is 30 days, can we run the report for previous periods
    Regds,
    Ritesh

    Depending on the library you are using, can you verify whether you can use one of the following variables?
    1PERIK   
    1PERW   
    5ACPERI  
    6-PERIK  
    8WPERIO
    All these variables use fiscal periods and not calendar periods, that way you don't have to bother about number of weeks in a period, unless you really need to do the calculation based on number of days in a period.
    If your library does not support these variables, then pl copy one of these variables (GS11) with appropriate details into a custom variable and use it in your report.
    Let me know.
    Regards
    Subodh

  • 10g report won't run in 11g

    Hi,
    I'm trying to migrate some reports from our 10.1.2.0.2 app server to an 11.1.2.0 one. The report I am currently working with compiles and runs fine in 10g Reports Builder, but when I copy it to the new 11g middleware server and try to run it, it gives me the following error:
    REP-1247: Uncompiled program units exist.
    REP-1247: The report contains uncompiled PL/SQL.
    There is no uncompiled PL/SQL in the report (that I can find), however googling this error it appears there could be something else wrong. I have been unable to get Developer 11g working on my workstation and I can't find a script to compile the report on the 11g middleware server. I am using a .RDF report and not a .REP one. Can someone help me troubleshoot this problem?
    Thanks
    Adam

    Hi,
    you can try the following options
    1- Run the report passing RECURSIVE_LOAD=no as parameter and see behavior
    2- To compile all the reports you can use rwconverter and a windows script.
    Example
    @ECHO OFF
    REM WINDOWS COMPILE REPORT
    ::compile_report.bat
    cls
    Echo compiling Report .....
    for %%f IN (*.rdf) do (
    <YOUR ORACLE_HOME>\bin\RWCONVERTER.bat USERID=user/pass@db BATCH=yes STYPE=RDFFILE SOURCE=%%f DTYPE=REPFILE OVERWRITE=NO
    ping 1.1.1.1 -n 1 -w 20000 > nul
    ECHO FINISHED COMPILING
    Hope this helps, Roberto

Maybe you are looking for

  • NVIDIA brightness and suspend issues on VAIO

    Hello, I have problems with NVIDIA driver (assuming) and I searched similar topics on forum but still couldn't solved. I'm on ARCH 3.1.5 Xfce, installed nvidia-290 proprietary driver and nvidiabl from AUR. No swap partition and using lightdm. Laptop

  • InDesign all versions: is there a rectangle widget...

    I need to draw a rectangle on a dialog, fill it with white background and then place a text box and another custom widget on top of it.  Is therea already a widget that will provide me with this functionality, or do I need to write my own custom widg

  • Oracle 9i Lite to Oracle 8i master, & Apache on HP

    1. Are there any replication issues or limitations when using 9i lite clients against an 8.1.7 master? 2. In the system requirements, it lists having Apache for NT or OAS9i as requirements. Are these set in stone, or supported versions? We run Apache

  • Present a UIImagePickerController results in temporary black screen

    All, I am developing an application that shows an initial page, then presents a UIImagePickerController with presentModalViewController:animated:. After taking the photo, it returns to the initial page, dismiss the UIImagePickerController with dismis

  • Can anyone translate this error return

    Error Return: gms_dif_aw_bu_lwst_lvl_bu_ext The error happens when trying to re-budget an existing Award Budget.