Bug v4.0 - no input field for file name in export dialog

Hello,
I run a query, right click in the result grid and choose "Export". There is no input field to provide a file name. I can only export to the default file.
Version 4.0.0.13 on XP
Edit: Seems to be an issue with the settings (maybe those migrated from 3.2.2). When I install without migrating settings I get the full dialog. I will try some combinations and update this post.
Edit: I installed again without migration my settings. When I set the preferences manually I cannot reproduce the bug. Maybe some bug in the import for the preferences? Maybe it only happens on German XPs.
Regards
Marcus

Thank you, 5p given.
However this is what I execute and in my file chooser dialog the filename field is still blank.
  ExampleFileFilter filter = new ExampleFileFilter();
    filter.addExtension("html");
    filter.addExtension("csv");
  JFileChooser chooser = new JFileChooser(new File("REPORT_ONE_"));
    chooser.setDialogTitle( "Save Report" );
    chooser.setFileSelectionMode(chooser.FILES_AND_DIRECTORIES);
    chooser.setFileFilter(filter);
    int returnVal = chooser.showSaveDialog(this);
    ...It is in try-catch, no errors are returned.
Operating System: WindowsXP
Java Version: 1.3.1

Similar Messages

  • When I try to convert my .pdf to Word, I get a sidebar that has fields for: the name of my pdf file, the type of file I want to convert to (In my case, Word), and a button that says "Convert".  My problem is that the "convert to" field isn't active.  I ca

    When I try to convert my .pdf to Word, I get a sidebar that has fields for: the name of my pdf file, the type of file I want to convert to (In my case, Word), and a button that says "Convert".  My problem is that the "convert to" field isn't active.  I can see the words "Microsoft Word" in pale gray, but when I click on the field, nothing happens.

    You have posted in the wrong forum.  Try posting in the forum for the product you are trying to use.
    Here is a link to a page that has links to all Adobe forums... use the drop down list to see all.
    Forum links page:
    https://forums.adobe.com/welcome

  • Formatted Text field for File Extensions

    Hi guys,
    Is it possible to create formatted text field for file extension like it should accept *.bmp, .bmp, bmp. etc..... It is not necssary to be a Combo Box. TextField will work.
    Thanks in advance.
    AZGHAR

    Any one here \Help\Help\Help ;-(

  • Ver.9.5 The volume for file name cannot be found

    HI,
    My work Mac Book pro was recently upgraded to Mavericks from 10.6.8, with iPhoto 11 (ver. 9.5) also an included upgrade. One album of photos is no longer accesible - clicking on each thumbnail provokes the following window "The volume for <file name> cannot be found. The "Try again" option doesn't work, and the alternative, which is to use the finder to locate the file is useless, as the files are buried in a library spare bundle. When I copy the file name, and search on the volume with the library via finder, it pulls up tiny thumbnail size files.
    I have a primary iphoto library on a dedicated USB external drive, which I back up not everytime I update the library (200 gbs spare bundle over USB2!), but regularly. I fear these recently imported files, have not been backed up before up erasing cards, and upgrading system OS, have gone.
    Is there any way of getting into the library via finder, or elsewhere in iphoto to refind the original master files which are in there somewhere? These files opened perfectly in iphoto before the recent upgrade.

    Thanks for the fast response. I've followed your directions and can't find the file in there, in Masters, Originals, or Modified folders. I found files in Thumbnails folder though. Some of the files from the same event are fine, so its not consistent. I'm also noticing that another file in the event has a totally blurred preview (Its a 24mbs Jpg from a Nikon D800) - not sure if this is at all connected.
    The positive news is that my NeoFinder database of drives indicates I should have the 'missing' files on another computer in the office, but I'm still scratching my head on this.

  • " the volume for (file name) cannot be found. Insert the disk or connect to the server volume and wait for it to appear on the desktop, then try again."

    I get an error message in iPhoto when I click on thumbnails of pictures in certain albums. It reads 'the volume for "(file name)" cannot be found. Insert the disk or connect to the server volume and wait for it to appear on the desktop, then try again.'  What does this mean and how do I fix it?

    It means that you imported the files in Referenced mode and have now remvoed them from the Mac. Put the disk or card back.
    For more on iPhoto and file management see this User Tip:
    https://discussions.apple.com/docs/DOC-6361

  • F4 help for file name

    frnds,
    Im using the FM "KD_GET_FILENAME_ON_F4" to get F4 help for file name in presentation server... but it does not seem to work...Y?????????
    and is there any FM to get the file name from the application server..
    points assured to all the answers...
    regrds,
    Madan...

    Try to use WS_FILENAME_GET
      call function 'WS_FILENAME_GET'
        exporting  def_filename     =  space
                  def_path         = 
                    mask             = ',.  ,..'
                    mode             = 'O'
                    title            =  text-038
       importing  filename         =  os_name
                                  RC               =  DUMMY
       exceptions inv_winsys       =  04
                  no_batch         =  08
                                    selection_cancel =  12
                                    selection_error  =  16.
    or
    at selection-screen on value-request for p_file1.
      data wa_file like file_table.
      refresh filetable.
      call method cl_gui_frontend_services=>file_open_dialog
       EXPORTING
       WINDOW_TITLE            =
       DEFAULT_EXTENSION       =
       DEFAULT_FILENAME        =
       FILE_FILTER             =
       INITIAL_DIRECTORY       =
       MULTISELECTION          =
       WITH_ENCODING           =
        changing
          file_table              = filetable
          rc                      = rc
       USER_ACTION             =
       FILE_ENCODING           =
      exceptions
        file_open_dialog_failed = 1
        cntl_error              = 2
        error_no_gui            = 3
        not_supported_by_gui    = 4
        others                  = 5.
      if sy-subrc = 0.
        if rc = 1.
          read table filetable into wa_file index 1.
          move wa_file-filename to p_file1.
        endif.
      endif.
    Max
    Message was edited by: max bianchi

  • Report Script : Parameter for file name?

    hi all,
    I am using a report script to generate a text file with budget data. This works fine in AAS console but I am automating this process by usning an ESSCMD and batch script.
    tha batch script will call the ESSCMD script which in turn executes the follwoing command
    RUNREPT 2 "RepScripName" "c:\Otputfile.txt"
    Now here I am hard coding the Output file name and location.But my requirement is that when I run the script it should prompt for file name and location.
    Any Idea on this
    Thanks

    Another solution I have tried is simply writing a small VB app that has a dialog that allows you to type in a file name or even navigate a file system directory. If I understand you correctly, you just want to be able to output the file anywhere you want. This works well and you can add more features to, just depends on if it is worth the effort. Other wise you can just write MXL and supply your script with position variables. You just need to type it in and hope you type typed it in correctly. Good luck, there are several ways to accomplish this.

  • Please add options for file names on camera or PlayMemories import (ie: 00001 DateTaken DSC)

    Please add options for file names on camera or PlayMemories import (ie: 00001 DateTaken DSC=   00001 2014_10_21 DSC )

    if(!getNewContactsName())
                   createNew();
                   return;
              if(!getNewContactsSurname())
                   createNew();
                   return;
              String checkName = newName;
              String checkSurname = newSurname;
              if(!checkIfDuplicate(checkName,checkSurname))
                   createNew();
                   return;
              if(!getNewContactsHomeNum())
                   createNew();
                   return;
              if(!getNewContactsWorkNum())
                   createNew();
                   return;
              if(!getNewContactsCellNum())
                   createNew();
                   return;
              if(!checkAtLeastOneNumEntered(newHome, newWork, newCell))
                   createNew();
                   return;
              }This can all be done in 1 if statement just use the or operator (||) will save some room
    private void deleteFromList(String nameOfContact, String surnameOfContact)
         {//Start of deleteFromList()
              int confirm = JOptionPane.showConfirmDialog(null,"Are you sure you wish to delete the contact from the phonebook?","Please confirm",JOptionPane.YES_NO_OPTION);
              if(confirm == JOptionPane.NO_OPTION)
                   return;
              elseWhy do you have a return statement in a void method? there's no need for this you can cut out the no part and just keep the yes

  • Internationalization support for File Names

    I want to know does it make sense to provide multilingual support for File Names. Say, I have a file called PurchaseOrder.pdf and it will be sent to users as an email attachment. We can localize the file name(for example, in Chinese: &#35746;&#21333;.pdf).
    But I want to know whether it is a standard to localize the file name. If not, should it be given in English, no matter which locale the user is using.
    Thanks in advance
    Edited by: Giritharan on Feb 1, 2010 1:53 AM

    ... hopefully you will not have to send another document to the same deliverer the very same day. Even if you add the minutes, a date tells you nothing about the contents. This is no problem as long as I receive nothing but purchase confirmations from you. But as a customer I will receive both sales confirmations and invoices, and then I think it's nice to see what the document is about.
    By the way, a person working in an international trading company is supposed nowadays to understand the English words "purchase, sale and invoice", isn't it? Maybe in 50 or 100 years from now Chinese will be the lingua franca. So be prepared for a change ;-)

  • BPEL Console not showing input fields for process

    I'm having a problem with our BPEL processes. When testing them in the BPEL Console the form for entering the input fields does not appear, even when switched to XML entry instead of HTML.
    The problem seems to occur in processes which take their input schemas from a different directory from the BPEL process. This was working fine in Oracle 10.1.2. We can successfully load the schema by entering its URL, and if the process is started without entering any data, the input message is correctly generated, just with all fields empty. So it seems like the schema is being found.
    When both the input and output schemas are specified inline in the project WSDL file, it works correctly. The problem occurs when referencing the schema in a different location. We have numerous projects which share common schemas, so specifying them all in-line is not a workable solution.
    Has anyone else encountered this problem, or found a solution to it?
    Thanks for your help.
    Howard

    I have similar process where I am able to see the instance incomplete process C, the issue is with the present process.
    actually process B and C are from production I have designed the new process A, which is calling B and B is calling C.
    I have also designed other process A1(new) which is calling B1(existing) and B1 is calling C1(existing), there I am able to see the instance of C1
    dont know why it is happening like this for process C
    please advice
    thanks
    yatan

  • Simulate FileUpload via HTTP Plain Adapter (input field type = file)

    Our Partner would like to get the payload via html input parameter with type=file.
    The Szenario:
    The payload is generatet in one CRM System as an individual structure. We send the payload via proxy to the integration enginge. Is it possible to simulate the fileupload technology of a simple html form with input field with type=file.
    Any idea is helpfull. Thanks!

    Hi Stefan,
    thank you for the tipps. I know about epilog parameters of plain http adapter and i. e. xslt mappings.
    I don' t know how the simple html upload works and if it is possible to build multipart upload?
    Manualy upload is resolvable with
    <HTML>
         <HEAD>
              <TITLE>Upload</TITLE>
         </HEAD>
         <BODY>
              <FORM ACTION="/cgi-sample/upload.pl" METHOD="post"
                                                ENCTYPE="multipart/form-data">
                         File: <INPUT TYPE="file" NAME="file"><BR>
                                   <INPUT TYPE="submit">
              </FORM>
         </BODY>
    </HTML>
    Meanwhile, we have solved the problem with a simple xslt mapping for plain html on the receiver side.
    Kind regards
    Jochen

  • Dynamic input fields for Doc Props in Batch Mode; Acrobat Pro 9

    I'm using Acrobat Pro 9.  I'm looking for a way for Acrobat to automatically fill/replace the Title and Subject fields of the document properties with the file name of the PDF it is processing during batch mode.  Currently I have this step set to interactive and must type the name in for each file as it is processed.  Is there a script I can use? A macro? Heck! A Hack? It would literally take weeks off of my monotonous work load as the file names are long and there are thousnds of them to be processed.
    Thanks,
    Photonogon

    If you want the file name with the path, you could add the following JavaScript:
    title = path;
    subject = path;
    If you just want the file name:
    var filename = path.split("/").pop();
    title = filename;
    subject = filename;

  • Split PDF and use field name for file name

    I have a pdf file with 333 pages that I will be splitting into 333 separate pfd files.  Each file needs a specific name that corresponds to a number located in the header of each individual page.
    Splitting the pdf is easy, unfortunately I can only use a static name for part of the file name and Adobe assigns the remaining portion with: _Part1.pdf; _Part2.pdf ect....  How can I get the "_Part1" to pull in the number located in the header of each individual page?
    I need to have this done before tommarow morning and there is another PDF which will be 555 files after it is split.
    Thanks for any help!

    Yes,
    I also know Profit Center field from R/3.
    However as I've mentioned....
    I need to ADD the field "Profit Center" in this TAB
    I do not even know if this field "Profit center" that I need to ADD is the same field from R/3.
    <b>You know....</b>
    I found "Profit Center"
    screen number: 0200
    program name: SAPLCRM_1O_MANAG_UI
    structure: ZCRMT_0200_BTX_UI01
    field name: ZZCUSTOMER_I0101
    data element: ZEEW_DATAELEMENT0101
    <b>However...</b>
    If I add this field above, the field does not display in the TAB I want. Meaning this field is not working.
    <b>For Instance:</b>
    In the same TAB (I want to add Profit Center), I have the field with:
    - description name field "Services Revenue"
    By pressing F1/Tech Info, I have:
    screen number: 0200
    Program name: SAPLCRM_1O_MANAG_UI
    Structure: ZCRMT_0200_BTX_UI01
    Field name: ZZCUSTOMER_I0101
    Does anyone has any idea to help me outto fimd Profit Center field?
    many thanks,
    Barb

  • To find the input fields for the given technichal names .

    Hi ,
    This is for the transaction SU01.
    I have some technichal names for some fields in this transaction,
    CODVN
    BCODE
    GUIFLAG
    LIC_TYPE
    REF_USER.
    I want to find out the input fields in this transaction which correspond to the respective technichal names mentioned above.
    How should i do it?

    Hi,
    Go to SU01 Tcode and press F1 on the fields you get the Pop-up and then click on the Technical Information...you can find the details of the fields,.....

  • Create WDA Input field for currency amount ref to curr key

    Hi Experts,
    Could the UI elements in WDA input fields have a key reference? If that possible, how to do that?
    For example: currency amount input field referenced to Curr key?or quantity ref to UoM field.
    Regards,
    Agnis Virtinova Avency

    Hello Agnis Virtinova Avency,
    WDA uses ABAP dictionary structures for this kind of linking - define your amount and currency as part of a standard ABAP structure - then link the two fields in the structure as per normal ABAP data dictionary . Then use this structure to define your context node.
    This is the same approach you should use if you have multiple fields that should input to or output from a DDIC search help.
    This means that if you choose - for example CLP (Chilean Peso) as the currency, then the decimal places on the amount field are removed.
    Hope this is what you were looking for.
    Cheers,
    Chris

Maybe you are looking for

  • Can't export in code behind

    Post Author: glauzier CA Forum: Exporting Hi, I have a web application in VB.NET that generates reports and export them in pdf or excel in code-behind... The application runs well and someday, I get this error: ParameterFieldCurrentValueException was

  • System prefs .mac trouble

    Kind of wierd.... When I open system prefs and click on the .mac area. My name is right but the password is wrong. When I change the password and hit enter it changes to the correct amount of dots hiding the password. However if I click on advanced o

  • SQ01 Query on VBRK billing docs

    Hi Experts I have a issue where we ran an customised query for the return billing documents the value for the return items is not showing the negative value in the report , Pls help me to know how does the Query report the billing values shows, Pleas

  • ORA-02074 when calling proc from VB

    Anyone have any idea why a stored procedure that sets a savepoint will fail with [Oracle][ODBC][Ora]ORA-02074: cannot ROLLBACK in a distributed transaction ORA-02074: cannot SET SAVEPOINT in a distributed transaction ORA-06512: at "PIPS_ADMIN.PKG_ACA

  • Hard copy of mountain Lion

    How do I get a hard copy of Moutain Lion in case I need to reinstall?