Popup with open and save file option

Hi,
I have created a button on my page name as "Export File" and created a process and called on "EXPORT FILE" button. I am using utl file in this procedure and i want to download this file and file will be .ics file using for calendar.
My page process code is
begin
pro_create_ical(:P6_START_DATE,:P6_END_DATE);
end;when i click on export file button it should raise a popup with open and save file option.
How i can do this?
Thanks & Regards
Vedant
Edited by: Vedant on Jan 25, 2013 1:59 AM
Edited by: Vedant on Jan 25, 2013 2:00 AM
Edited by: Vedant on Jan 25, 2013 3:49 AM

Shiv,
Have you installed any new Software/Spyware/Virus Scanner etc.Check it out.It might have caused the issue for last 5 days.
This issue is fixed in Latest Support Package Versions.
Which Version of Support Package you are using?
If EP6 <SP19 you will face this issue.
Just upgrade it to EP6, Support Pack-19,this will be resolved.
Upgrade of Support Pack wont take much time.you can get the document under http://service.sap.com/instguides
Hope it helps
Regards,
Karthick Eswaran
*Reward Points for helpful answers.

Similar Messages

  • How to open and save file like the Notepad Demo do?

    I am a newer to Java Web Start. I found that in the Notepad Demo, when user try to open or save file, a message box appear and give the user some security suggestions.
    In my application, I used a JFileChooser and set the <security> element to <j2ee-application-client-permissions/> in the jnlp file. But the application will thow an exception:
    access denied (java.io.FilePermission C:\Documents and Settings\Administrator\desktop\Java Web Start.lnk read)
    Can someone tell me how to solve this problem. By the way, where can I find the source of the Notepad Demo. I want my application to open and save file just like the Notepad Demo do.

    The Notpad demo uses the JNLP api to read and write files. The api doc can be found at:
    http://java.sun.com/products/javawebstart/docs/javadoc/index.html
    Although the Notpad demo source is not available, there is other sample code available at:
    http://developer.java.sun.com/developer/releases/javawebstart/
    Included here is the webpad demo, which uses the FileOpenService and
    FileSaveService API's.

  • How to Open and Save files

    I have a problem to open and save the files.here is my code. can anyone help me to open the files.
    public void actionPerformed(ActionEvent e) {
    if ("open".equals(e.getActionCommand())) {
    FileDialog fdopen=new FileDialog(this, "Load File", FileDialog.LOAD);
    fdopen.show();
    Thanks for ur time

    Hi fbnmir or who ever can answer my question,
    My problem is similar to the code you wrote. I'm trying to make (or rather complete a half done) editor for text files. For opening and saving files I have so far:
    public void actionPerformed(ActionEvent ae){
    FileDialog filedialog;
    final SearchDialog searchDialog;
    String arg = (String)ae.getActionCommand();
    // the Open ... case
    if(arg.equals(Editor.fileLabels[0])){ 
    if(Editor.VERBOSE)
    System.err.println(Editor.fileLabels[0] +
                        " has been selected");
    filedialog = new FileDialog(editor, "Open File Dialog", FileDialog.LOAD);
    filedialog.show();
    if(Editor.VERBOSE){  
    System.err.println("Exited filedialog.setVisible(true);");
    System.err.println("Open file = " + filedialog.getFile());
    System.err.println("Open directory = " + filedialog.getDirectory());
    //the Save ... case
    if(arg.equals(Editor.fileLabels[1])){ 
    if(Editor.VERBOSE)
    System.err.println(Editor.fileLabels[1] + " has been selected");
    filedialog = new FileDialog(editor, "Save File Dialog", FileDialog.SAVE);
    filedialog.show();
    if(Editor.VERBOSE){ 
    System.err.println("Exited filedialog.setVisible(true);");
    System.err.println("Save file = " + filedialog.getFile());
    System.err.println("Save directory = " + filedialog.getDirectory());
    These are two components of a MenuHandler class. The problem with this code is that in the text editor window, even if the Open button is pressed the file I want to open isn't displayed. Although the System.err (I think that's what it is called) says:
    Open ... has been selected
    Exited filedialog.setVisible(true);
    Open file = tutorial_01.rtf
    Open directory = C:\dhruba\epgy_2006\tutorial\
    Save ... has been selected
    Exited filedialog.setVisible(true);
    Save file = test.txt
    Save directory = C:\dhruba\epgy_2006\tutorial\
    How can I actually display the file I want to open, or save some text I've written?
    I would appreciate any help, thanks.

  • PS CC - Performance, open and save files

    Hi guys,
    I am working on multi-gigabyte files 4-10gb, but say a 5gb file takes me approx 75 seconds to open... it only use 4 core's and 10gb of ram.
    Saving is so sloow - same size files, now I haven't timed it but it takes time... IMHO it takes too much time considering the hardware.
    system contains 20 SSD's
    8x Samsung 830 Raid-0 for startup disk (Areca 1882ix-24 4GB cache)
    6x Intel 520 Scratch disk in Raid-0 IBM M1015 controller
    6x Intel 520 storage disk in Raid-0 IBM M1015 controller
    I have played with various configurations
    48GB of ram
    2x XEON X5650 at stock speed 2.66Ghz - but it can go to 4.2Ghz
    Windows 7 x64
    am I expecting too much?
    thanks
    Henrik

    Hi fbnmir or who ever can answer my question,
    My problem is similar to the code you wrote. I'm trying to make (or rather complete a half done) editor for text files. For opening and saving files I have so far:
    public void actionPerformed(ActionEvent ae){
    FileDialog filedialog;
    final SearchDialog searchDialog;
    String arg = (String)ae.getActionCommand();
    // the Open ... case
    if(arg.equals(Editor.fileLabels[0])){ 
    if(Editor.VERBOSE)
    System.err.println(Editor.fileLabels[0] +
                        " has been selected");
    filedialog = new FileDialog(editor, "Open File Dialog", FileDialog.LOAD);
    filedialog.show();
    if(Editor.VERBOSE){  
    System.err.println("Exited filedialog.setVisible(true);");
    System.err.println("Open file = " + filedialog.getFile());
    System.err.println("Open directory = " + filedialog.getDirectory());
    //the Save ... case
    if(arg.equals(Editor.fileLabels[1])){ 
    if(Editor.VERBOSE)
    System.err.println(Editor.fileLabels[1] + " has been selected");
    filedialog = new FileDialog(editor, "Save File Dialog", FileDialog.SAVE);
    filedialog.show();
    if(Editor.VERBOSE){ 
    System.err.println("Exited filedialog.setVisible(true);");
    System.err.println("Save file = " + filedialog.getFile());
    System.err.println("Save directory = " + filedialog.getDirectory());
    These are two components of a MenuHandler class. The problem with this code is that in the text editor window, even if the Open button is pressed the file I want to open isn't displayed. Although the System.err (I think that's what it is called) says:
    Open ... has been selected
    Exited filedialog.setVisible(true);
    Open file = tutorial_01.rtf
    Open directory = C:\dhruba\epgy_2006\tutorial\
    Save ... has been selected
    Exited filedialog.setVisible(true);
    Save file = test.txt
    Save directory = C:\dhruba\epgy_2006\tutorial\
    How can I actually display the file I want to open, or save some text I've written?
    I would appreciate any help, thanks.

  • Illustrator CC is taking a very long time to open and save files.

    I am using a Mac with the Mavericks OS. Illustrator can take up to FIVE MINUTES to open or save a file. It is becoming a waste of time as I have to work on multiple projects a day. I read about "Adobe Drive" but have not found this option on the version of Illustrator that I have.
    Please help!

    Any update?
    I found this discussion: http://forums.adobe.com/message/5839180 but have been unable to locate Adobe Drive on my system.
    I have followed the above suggestions with no avail. I have only been opening files from my desktop. This issue is only with Illustrator, Photoshop works fine.
    I ran a script yesterday that opens up eps files and saves them as a png, and what normally takes around 30 seconds took almost 45 minutes. I need to solve this problem asap.
    Would uninstalling and reinstalling the CC suite be of any benifit?

  • HOW TO OPEN AND SAVE FILES TO/FOR MS-WORD 2007 .docx format

    MS-Office 2007 will open .docx files as well as .doc files. Apple's Pages '08 can OPEN MS Word 2007 documents with the new file format ".docx". Pages '08 can not save as ".docx" files, just ".doc" files, but since MS Office 2007 can open these ".doc" without a problem, you should be covered.
    Here is how.
    To open: Just double click the file and Apple's Pages '08 will import the file and open it for you to use and modify.
    To save and use at your work or school's Windows MS Word 2007: When you are done and ready to save the file, go to FILE in the menu bar in Pages '08 and select EXPORT. Then pick the icon DOC WORD and click NEXT. Then in the SAVE AS box, give it a name and tell where you want to save your file to. Click EXPORT. Export is like Save, as it will now save the file where you told it to save it to. Remember you can use the same name, or give it a new name. Thats it. EASY.
    It will save the file in a Windows Word format of ".doc" that MS Word 2007 can open and use.
    Hope this helps people.
    -Apple //GS

    Why yes. How did you know that I saw the way, the truth and the light?
    I just had so many people ask me how to do this, that I thought I might share it with as many people as I could and help the masses To bad that Apple just did not have it as a simple "Save As:" Maybe in the next update.
    -Apple //GS

  • Problems with open and save

    Hello everybody
    I am doing a project to create text editor. I have JMenuItems for save, open new. I want to know how to save a file. I want to save only .txt files. I am able to pop up a dialog box, but when I press save it does nothing. I think I need the FileWriter part, but I am not sure how to use it. So if someone can help me how save just .txt files in my text editor that would be great.
    I also want to know how can I filter the files to just .txt files when i open the file. When I hit open in my program, I am able to open a txt file specified in my code, but what I want is to select any txt file.
    Thanks

    to save a file you would do something like:
    FileWriter fw = new FileWriter( fileName );
    textComponent.write( fw );
    fw.close();See the JFileChoose API for filtering files by extension. The API gives an example.

  • AppleScript open and save file with Numbers

    Hi all,
    I need to save an Excel .xls file as an .xls file in order to break the links that are included in the original Excel file. Since Numbers doesn't have any actions for Automator, I hoped someone could help me writing an AppleScript?
    It needs to open (Numbers) and all the .xls files that are added to a specific folder on my Mac, then save them to another folder as .xls (not .xlsx) and overwrite any existing files with same name. Since this all should work automatically, warnings and pop-ups that need a user to click an option are not allowed.
    Didn't think this could be too hard, but I'm just a noob when it comes to AppleScript. Help?
    Thanks in advance

    Check the attributes of the <textarea> tag. You can use wrap="no" or wrap="virtual" or wrap="hard" to define how the text area handles carriage returns.
    Brian

  • Slow to open and save files

    My Macbook Pro with Mac OS X 10.7.4 has been real slow lately in opening files, saving documents, opening webpages.  Any suggestions on ways to speed things up?  I often have MS Excel and Word and Outlook open so not sure if that is the problem.

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up a guest account” (without the quotes) in the search box. Don't use the Safari-only Guest login created by Find My Mac.
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem(s)?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault in Mac OS X 10.7 or later, then you can’t enable the Guest account. The Guest login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows:
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear).
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    *Note: If FileVault is enabled under Mac OS X 10.7 or later, or if a firmware password is set, you can’t boot in safe mode.
    Test while in safe mode. Same problem(s)?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • Word 2013 shows full UNC path instead of local "Documents" folder on file Open and Save

    Normally Word (and Excel) by default will show the user's local "Documents" folder when opening or saving a file. That is what we want. However, after using Windows Server Folder Redirection to redirect the Documents folder to the network (Windows
    Server 2012R2), Word now shows the full UNC path to the network share.
    Instead of seeing:
    "MyPC  Documents"
    users see
    \\sever1\redirect$\username\documents
    Folder redirection is supposed to be transparent to the user. Virtually all our other applications, including Office 2003, respect this convention and continue to show "Documents". As you can see, Word even exposes a hidden share.
    Even if we go to File / Options / Save and browse to the local Documents folder as the place Word should open and save files from, Word immediately removes the path you have browsed to, and replaces it with the UNC path.
    Is there a way to suppress this behavior? Thanx!
    Dana

    Hi,
    Based on my understanding, you only want others to see some part of path name, rather than full UNC path name. It is right?
    It seems that we can’t implement your requirement. When we open a file from “My Pictures”, it shows “My picture” instead of showing the full path “C:\Users\User\Pictures”. “My Picture” is set as a library in Windows, so it hides
    full path by design. We can't set \\sever1\redirect$\username\documents as a library.
    As a workaround, you can upload these files to OneDrive and share link to others.
    If I have anything misunderstood, don't hesitate to tell me.
    Regards,
    Greta Ge
    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.

  • Slow open and save with psb files Photoshop CC

    Here is my system info:
    Mac Pro Early 2009
    Processor  2.66 GHz Quad-Core Intel Xeon
    Memory  32 GB 1066 MHz DDR3 ECC
    Graphics  ATI Radeon HD 5770 1024 MB
    Software  OS X 10.8.4 (12E55)
    Running Photoshop off an SSD 220GB as my bootdisk , and then my scratches are two 1TB Western Digi Caviar Blacks, both at about 60% full, running Big and flat in PS CC prefs,
    Running Photoshop CC 14.0.0
    I'm having very slow open and save times for psb files ranging in size from 2GB to 6GB - slow meaning 5-6 mins
    Does anyone have any suggestions to improve this time?

    I've noticed the same thing with .tif files. It's taking a good minitue or more to save a 15 meg .tif. Very annoying. I opened PS4 and converted the same .jpg to a .tif and saved it in the same location and it took about 4 seconds. Something is totally jacked with saving files in CC.
    Checked the compression settings and the are the same in both. Not a big fan of CC everything is slower. I pay monthly now to work slower?!? May have to go back to CS4.

  • I am using Indesign cs5 version 7.0.4 with a mac OS X version 10.9.4. I am having an issue where the save and save as option disappears. I am exporting the file as .idml and then resaving to avoid losing work but has to import all the images which takes a

    I am using Indesign cs5 version 7.0.4 with a mac OS X version 10.9.4. I am having an issue where the save and save as option disappears. I am exporting the file as .idml and then resaving to avoid losing work but has to import all the images which takes ages. Any help out there?

    I believe there are a couple of similar threads about CC or CC2014 behaving this way that might give yo some hints, but CS5 is not supported on your OS and may not run properly regardless of what you do. An in-place OS upgrade or an attempt to migrate the application would both be major problems for ID, so if you did either of those things you'll want to uninstall, run the cleaner tool (CS Cleaner Tool for installation problems | CCM, CS6, CS5.5, CS5, CS4, CS3) and reinstall.

  • Files in all programs slow to open and save with Snow Leopard

    Installed Snow Leopard, now all files in all programs super slow to open and save - Photoshop, Illustrator, Quark -- all now at least 4-5X slower to open files and save -- here's what I've tried so far:
    repaired permissions
    emptied font cache - restarted up in safe mode
    re installed Snow Leopard
    renamed old preferences and restarted to create new prefs
    I'm hating Snow Leopard -- eeesh -- this is no upgrade, just a big waste of time and money, any ideas?

    See:
    Mac Maintenance Quick Assist,
    Mac OS X speed FAQ,
    Speeding up Macs,
    Macintosh OS X Routine Maintenance
    Essential Mac Maintenance: Get set up,
    Essential Mac Maintenance: Rev up your routines,
    Maintaining OS X, and
    Myths of required versus not required maintenance for Mac OS X for information.

  • When I click on download link, Firefox don't pop-up window where i could select open with or to save file, it just pop-up window where to save, why?

    Before update, when i clicked on download link pop-up window would come up asking me if i wnat to open file with program or just save it, but after update i dont get that pop-up window, insted i get window asking me where to save it, how can i fix this problem, because i want sertain files to be opened with a program like it was before update? I have tried every solution i could find, and nothing helped. I use Firefox 16.0.2 on win7 ultimate x64bit

    Thank you, it helped alot. I found that my problem was that all programs in applications panel was set to "save file" option and when i changed them to "always ask" it was back to normal, like i used to :D many thanks

  • Illustrator CC very slow to open and save large format files

    I work in a print shop that prints biggish stuff. I will frequently have files that postscript to close to a GB or more. Working on simple vector art with a few images in CC is not too much of a problem, but I still notice CC is slower than CS 6. The big problem is when I get a few 200mb PDF's, or files with layers of transparent PSD files in them etc, big busy files, then AI CC really bogs down, or frequently crashes altogether. CS 6 is MUCH better. I don't have the font issues, AI CC works fine with simple files. Saving & opening these big files is such a problem, I just save them back to CS 6, but that causes problems too, I do not want to, nor should I have to have 2 versions open at the same time. I always try to optimize the files as best possible, but it is tough sometimes as they R supplied by the customer, and the time it takes. We save to a Windows Server 2008 R2 box over gigabit network, which I know is not best practice, but no choice with the sheer volume of files. Would B insane to try to keep track & copy them back & forth, and it was never a big issue with CS 6. I am the first victim in our office, but the other 3 Mac Pro's will B switching over to CC this week, and I know the operators will B crying.
    Anyone else out there having the same large file problems?
    THX
    Mac Pro 2.4GHZ 12 core 32GB 1TB
    Mac OS X 10.7.5

    I'm not sure Adobe would like this, but it seems to be working for us on Mac OSX 10.9.3 and Illustrator CC 2014
    Go to your user Library > Preferences folder and open com.adobe.mediabrowser.plist using TextEdit.
    Select all the text and delete it.
    Save the file
    Get Info and lock the file.
    I also removed the com.adobe.mediabrowser.plist.lockfile from the Preferences folder.
    So far doing this really improves performance in Illustrator CC 2014. Opening and saving files happens at a reasonable rate; however there is a down side. Preferences no longer save. Changes made to pallettes, etc. have to be redone everytime Illustrator is opened.
    Other posts mention having Verdana and Trebuchet installed. I didn't find this to help at all.

Maybe you are looking for

  • Xbox 360 and my Wireless N setup.

    I am currently using WRT350N (the storage version of the 300N) and a WUSB300N for my for my laptop using wireless N. They all work pretty well together. I recently got an xbox360 and I am looking to get it connected to the internet and I have a few o

  • How can I download Boot Camp for Tiger

    Hello I cannot find anymore ways to download Boot Camp for Tiger not for Leopard because I don't have that kind of Operating system. It's kind of expensive. If you have any advice or links, please tell me.. Thanks. Shang

  • Is there a way to trace a line between point A and B in a PowerMap

    Hi there, I have a simple question about PowerMap. Can I trace a line between points A and B? Please bear in mind that a workaround to create hundreds/thousands of points to simulate a line would NOT work for me (like this tutorial here -- this is a

  • When is Firefox going to stop hogging my system??

    Firefox constantly drains my RAM and CPU memory. I have 2GB of RAM and it dares to use over 1GB of that. I have a AMD 5200 processor and it dares to use over 50% of that. It's doing this constantly and I'm not the only one who has this problem. When

  • Having problems with key chain password

    I just got my mac book yesterday, and I'm having problems with my keychain password. My keychain password is not the same as my login password, it won't accept it, so i think i made a typing error. Each time i go on to safari, it asks for the passwor