Files downloaded from the KM have iView pcd location instead of filename

Hello,
I have created a Filesystem Repository manager and a KM Document that reference one of the excel file over there. The problem is that when a user opens the iView and saves the file the suggested name is not the filename but this one:
pcd!3aportal_content!2fgpd_content!2fvalrep_content!2froles!2fZGPD_VALREP_US1!2f00000005!2f00000006!2fZGPD_VALREP_US1_00000007
which is the entire iView location in the pcd...
Any idea how can I change it to be the file name?

The server can send a suggested filename though the HTTP "Content-Disposition" header  Apparently, the IView you are using doesn't do that (not sure whether this is part of KM or the portal).
PS: sadly, one specific very popular browser doesn't support this properly for non-ASCII characters, so it's non-trivial to get this working properly with all browsers.

Similar Messages

  • Hi- I'm trying to install xcode 2.5. Idon't know what to do w/.exe file downloaded from the apple developer website

    Hi- I'm trying to install xcode 2.5. Idon't know what to do w/.exe file downloaded from the apple developer website.
    I would like to be able to use AU Lab but my developer folder only has extras/palettes inside- no applications or tools.
    Thanks

    Hello,
    What is the full name of this exe file?
    Those are for Windows®

  • File download from the server

    I have this page(in a distributive application) that checks the status of files on the server. These are hyperlinked and I am trying to allow the users to download the files. I can see the files, and the links but can't download a file or "save target as.." option.
    I have added an .xml file in the configuration directory of my application server(JBoss). I can download the files on the same computer, but if I can't do that from other computer. I got this .xml file from online search, someone suggested to use this in order to allow for download option.
    <?xml version='1.0' encoding='utf-8'?>
    <Context debug="99" docBase="/home/jboss-4.0.5.GA/bin/Fastran" path="/Fastran" reloadable="true">
    </Context>Can I get some help in this regard ? The files are created in the application server folder, should I change the destination for resultant files outside of the server folder ?
    Thanks.

    <%
            String userFolder = applicationId.getUserEmail() + applicationId.getSessionId() ;
            for (int i = 0 ; i < Integer.parseInt(applicationId.getSpecValue()) ; i ++)
                int j = i + 1 ;
                File spec = new File("C:\\jboss-4.0.5.GA\\bin\\Fastran\\" + userFolder + "\\ftn07_" + (i+1)) ;
                if (spec.exists() == true)
                    //out.println("") ;
                %>
                <a href = "<%= destFile %><%= j %>"><% out.println("ftn07_" + j); %></a><br>
                <%
                else
                    out.println("File not found") ;
        %>
    and here is how i get to the destFile:
    <%
         String destFile = "C:\\jboss-4.0.5.GA\\bin\\Fastran\\" + applicationId.getUserEmail() + applicationId.getSessionId() + "\\ftn07_" ;
            String destSum = "C:\\jboss-4.0.5.GA\\bin\\Fastran\\" + applicationId.getUserEmail() + applicationId.getSessionId() + "\\DamageSummary.txt" ;
        %>

  • Acrobat Reader can't open PDF file downloaded from the internet

    I downloaded the following pdf file from the internet and saved it to the desktop. When I tried to open the file I got a message saying Acrobat couldn't open it. I do not have trouble opening other PDF files. There is something about opening certain PDF files from the internet that is causing this. Is there a setting in the PDF preferences that is causing this or some security setting.
    http://www.porteverglades.net/include/content/docs/media/Port-map-2009.pdf

    It seems that Safari is unable to export the document as a PDF because the exported file was zero bytes. That's why I couldn't open it. I tried Firefox and did a File>Save. It saved the file as a PDF which I was able to open. So proglem solved.

  • Extremely slow file downloads from the 'net (Pavilion G5460uk)

    We have an HP Pavilion G5460uk desktop with Windows 7 (64-bit) updated to SP1 and current, and use IE10 and Chrome. Protection is by Norton360 supported with Spywareblaster and Spybot S&D, and also access to Norton 'Eraser', ESET scanner and Sophos virus remover.  The PC is ethernet-cabled into the router but with also use other laptops etc wirelessly (all all these are working fine, with the same antivirus setup etc, without the problems we have on the HP desktop).
    Performance on the internet seems fine EXCEPT that the desktop is now extremely slow at downloading any files (to the point that it is timed-out on the servers).  It is impossible to download anything large onto it directly from the 'net(we are using the other PC's to transfer files) - although MS updates seem to get on OK. 
    We tried HP 'Support Assistant' which recommends two updates: Ralink Wireless Network Controller (sp58084) & 802.11n WLAN (sp60924) updates.  Of course we cannot download these directly but it is unclear whether these are relevant to the problem anyway.
    It does not appear to be a network/internet, software currency or virus issue.  Some setting somewhere?  Please can someone advise on what now needs to be done.
    This question was solved.
    View Solution.

    Matter now resolved!   We thought that we had covered everything before bringing it here.  But just one dodgy router port connection is all it takes.  Thanks for your time.

  • Why can't I print out PDF files downloaded from the internet?

    Such as medical files, applications, etc. They just end up as an "error" in my printer queue. I have used four different printers and three differnt iMac computers. Same problem. What is UP? Do I have to convert it? Becxause, when I do -- and it so graciously "allows" me to -- it reformats and looks like a transmission from the nearest five year old. Thoughts?

    Assuming that you're talking about printing from Adobe Reader for iPad or iPhone, you either (1) need an AirPrint-enabled printer, or (2) (for the iPad only), purchase a third party app like Printer Pro from Readdle.
    Here's a list of AirPrint-enabled printers:
    A List of Printers with AirPrint (updated March 2013)
    If you're talking about printing from Reader on your laptop or desktop computer, you're in the wrong forum.

  • File download from the db.

    Hello,
    I'm using this standard? procedure to download files from the db.
    CREATE OR REPLACE procedure DOWNLOAD_MY_FILE_ATTACH (p_file in number) as
         v_mime varchar2(255);
         v_length number;
         v_file_name varchar2(2000);
         Lob_loc BLOB;
    begin
         select mime_type, blob_content, file_name,dbms_lob.getlength(blob_content)
              into v_mime,lob_loc,v_file_name,v_length
              from USER_FILES
              where file_id = p_file;
    -- set up HTTP header
    -- use an NVL around the mime type and
    -- if it is a null set it to application/octect
    -- application/octect may launch a download window from windows
    owa_util.mime_header( nvl(v_mime,'application/octet'), FALSE );
    -- set the size so the browser knows how much to download
    htp.p('Content-length: ' || v_length);
    -- the filename will be used by the browser if the users does a save as
    htp.p('Content-Disposition: attachment; filename="' || v_file_name || '"');
              -- close the headers          
    owa_util.http_header_close;
              -- download the BLOB
              wpg_docload.download_file( Lob_loc );
    end;
    Sorry for posting the code...
    but with mozilla while doing a save as for a file the file name is selected with the prefix F1234455...-docname.doc while in IE what this procedure returns back to save as is the db schema name as the doc name.
    Anyone been through this before?
    Thanks,
    NJ

    NJ,
    Try changing this line:
      htp.p('Content-Disposition: attachment; filename="' || v_file_name || '"');to:
      htp.p('Content-Disposition: attachment; filename="' ||
              substr(v_file_name,instr(v_file_name,'/')+1)|| '"');Sergio

  • How do I open a .fdf file downloaded from the internet?

    Hello =-D
       I have been on a website many times in the past and opened pdf files. Today however, I have been trying to download an adobe file, and its showing up as a .fdf file. When I click to open (or drag and drop) I keep getting this error message:
    This PDF is attempting to launch:
    [insert file location here]
    Are you sure you want to continue?
    [Yes]
    [No]
         When I click on yes, I get the same repetitive error message and nothing opens. I have tried about 30+ yes's and still nothing.
    I am running windows 7 professional with Adobe XI. I know I have opened this file on this computer in the past, I do not know why it will not open now. It has been about 8 months since I have tried though...
    Thanks peeps =-)
    ~Firedogjoe

    Hi Graffiti,
       Thank you for providing the website... After looking over the website you provided, I am still a bit confused. I will break it down for ya =-)
    FYI, I am not that computer savvy, but I am sure you will figure that out by the end of this post...
    It states:
       The easiest is when the PDF is set up to import the FDF
    programmatically (using a JavaScript to import the FDF), or has the
    Import FDF action. In both cases, the FDF file name is specified.
    Q: How do I get Adobe to set up PDF to import FDF programmatically?
    It states:
       Another possibility is if the FDF has the reference to the "base PDF"
    included. In this case, opening the FDF will automatically load the
    according PDF. If the base PDF is already open, the data gets
    imported immediately.
    Q: How do I know if the FDF has a reference to the "base PDF"?
    Statement: If it should "Load automatically", I would not have an issue... or am I reading this wrong?... #confused
    It states:
       You can also try to open an FDF file which does not have the
    reference to the base PDF; it will then ask for the PDF to be loaded
    into.
    Q: How do I know if the FDF does not have a reference to the "base PDF"?
    statement: Nowhere do I see it asking for the PDF to be loaded...
    Thank you
    ~Firedogjoe

  • Portal - multiple file upload from the Solman support iView

    Hi Solman experts
    I need to make a modification to the portal solman support iView in order to attach multiples files to a support request (like it is possible to do when creating a OSS message to SAP).
    I have tried to look at the configuration but it does not seem that this is possible to customize u2013 is there another application that could be used instead?
    Any ideas in how to solve this issue would be appreciated.
    Thanks in advance
    BR
    John Stubbe

    Hi,
    Please note as per SAPUI5 SDK - Demo Kit
    Since version 1.21.0. Please use the control sap.ui.unified.FileUploader of the library sap.ui.unified instead.
    Try with sap.ui.unified.FileUploader and check if there are any issues with IE 10/11
    Regards,
    Chandra

  • Problem with LR5 Import on MAC, it always shows "file cannot be imported because it could not be read" This happens with file downloads from the memory card as well as with files from the hard drive. Happened out of the blue and I cannot figure out why. P

    I need some instructions to solve this problem, has anyone had the same problems? We just got an imac and changed from windows to mac. At first LR worked perfectly, all of a sudden I cannot import pictures anymore. Please help!!

    The destination directory, where Lightroom is trying to copy photos to, does not have WRITE permission. Change your permissions.

  • Options for large XML file - downloading from the app hangs browser

    I am using 5.6.3 in EBS.
    My users want to create files that can be uploaded into another system. The system will take XML files so my original idea was to create a data definition and have the user simply save the xml output (using View XML option). A .rtf template is also required for a pdf output - a summary of what was sent in the extract. This idea worked fine until I got a large file (37+ MB) and the View XML crashed my browser. Other than moving the files to a directory on the server that my user has access to, is there any other way to get at that raw XML?
    Updated:
    I have been doing some more reading and I am wondering if both an etext template and a pdf template would have been the better solution. This way I could submit once with the etext template and republish same data with the pdf template. Has anyone tried this successfully? I am not sure though that this would eliminate my problem with the large files (100,000+ records) crashing the browser. When you use an etext template, how do you get at that file? Is it using the 'View Output' button on Request Form or do I have the option to send it somewhere directly (i.e. server or email)?
    Any tips would be appreciated.
    Edited by: Tam_11 on Jan 14, 2011 1:38 PM

    Hi,
    using etext, the text output will still be in the usual directory at $APPLCSF/$APPLOUT.
    The text output will be smaller than the XML output so I'd be surprised if it still crashes your browser so you shouldn't need to get the XML.
    What format is needed for the target system?
    Cheers
    Kofi

  • My PowerBook G4 pops up an error when attempting to open a file downloaded from the internet. Help?

    When I attempt to open the application that IS compatible with Mac it says "Safari can't open the file "blank" because there is no available application to open it" How can I get an application to open it?

    What kind of file? Have you tried setting an application to open it in Get Info?

  • Files recently downloaded from Canon Legeria FS306 do not play the audio. Can hear audio on camera or downloading same files to a PC. Also hear audio on earlier files downloaded from same camera to iMovie '11. How do I avoid problem & recover lost audio?

    Files recently downloaded from Canon Legeria FS306 to iMovie '11 do not play the audio. I can still hear audio on the camera or by downloading the same files to a PC. Can also hear audio on earlier files downloaded from the same camera to iMovie '11. How do I avoid this problemand recover lthe ost audio?

    The first thing to try is to run Software Update (the Update tab in the Mac App Store.). This was an issue a couple of releases ago, and an update seemed to fix it.
    If you are already at the most recent version of iMovie, then I don't know how to solve you issue. Maybe someone else will have some ideas.

  • Just upgraded to Lion, can't open any pdf file downloaded from internet that was fine with Leopard. How can I overcome this obstacle ?

    Just upgraded to Lion, can't open any pdf file downloaded from the internet that was fine with Leopard before. I just got a black screen when I clicked on a pdf icon on a given internet site, and same happened with several sites that I visited. How can I overcome this obstacle ?

    Try two things with Safari not running:
    1) Launch Adobe Reader, open its preferences, select the Internet category, and check the values under "Display PDF in browser using".  If it's checked, try unchecking it.
    2) Look in /Library/Internet Plug-Ins (at the top-level of your boot volume) for something names AdobePDFViewer.plugin.  If you see such a file, try moving it to a folder named "Disabled Plug-Ins" (if such a folder exists) or onto the Desktop.
    Then see how things work.

  • I am a new iPhone 4s owner. I have a tone in iTunes that I downloaded from the web as a m4r file. Why won't it sync to my iPhone so I can set it as a ringtone.

    I am a new iPhone 4s owner. I have a tone in iTunes that I downloaded from the web as a m4r file. Why won't it sync to my iPhone so I can set it as a ringtone?
    Lois

    Yes, the tone is available and checked in iTunes under the Tones library.
    Yes, it is also listed under the Tones tab for my iPhone, but it is grayed out.
    Yes, tones are selected under "sources" in General Preferences, along with everything else.
    SyncTones was NOT selected under the Tones tab for my iPhone. I did so and it synced.
    Thanks for your help!
    Lois

Maybe you are looking for