Bundle File download for userDetail

Hi,
From where i can download bundle file for userDetail metadata extension.
File name com.sap.ip.collaboration.coreui.api.people.flexibleui.PeopleBundle
Regards
Baby

probably this exception is coming bez of not able to find the "far" file ext.
Try this might  hlep you
WDWebResourceType FILE_EXT = WDWebResourceType.DOC;
thanks

Similar Messages

  • HT1386 my ipad 4 wont restored and i need ipsw file download for A1460

    my ipad 4   restored and show itunes sync picture on display tablet &  i need download  ipsw file download for update my divice ios7.1.1  that compatible  my ipad 4   - the serial number is  A 1460
    summary:
    i need ipsw file for download and mack by itunes overhall my divice

    cuz me too same case I have also I lost all my photos 800pics

  • Force file download for IE9 on Azure Blob Storage

    Hello,
    I am trying to use Azure Blob Storage as a location for secure file downloads using Shared Access Signature. Everything is working very well, however the problem I am having is I am trying to allow the user to save files from the browser and I have all browsers
    except IE9 working.
    Reviewing this question,
    What content type to force download of text response?
    this works well when I can control all of the headers, however in Azure Blob Storage, I have set the Content-Type to application/octet-stream and this allows all browsers except IE to ask the user to save the file, IE simply opens the file. It appears that
    known file types will open (example .jpg, .wmv etc…).
    In Azure, I have found no way to set
    Content-Disposition: attachment;filename="My Text File.txt"
    Is there a way, using Azure Blob Storage, to use IE to download any file directly from Azure Blob Storage?
    Thanks in advance.

    Hi,
    Actually, we can't set Content-Disposition for blobs, and I can't think of any other workarounds. From my experience, in most case IE's behavior is fine. I would like to know why you have to prompt a download? The user can see the text file, and
    if they wish to save it locally, they have more than one way to do that (copy paste, save file, etc.). If they simply want to read the text and then forget it, that's also fine. They don't even have to download it and then double click a local file to read
    the content.
    If you have to modify the behavior, the only workaround I can think of is to use a web role as an intermediate bridge, and add the Content-Disposition from your web role.
    Best Regards,
    Ming Xu.
    Please mark the replies as answers if they help or unmark if not.
    If you have any feedback about my replies, please contact
    [email protected]
    Microsoft One Code Framework

  • File download for OrdAudio type

    Hello
    I would like to ask why my filedownload link is not displayed. I am using type OrdAudio for Audio files. Do I have to use OrdDoc for this. Is this the reason for JHS not showing the download link
    Esma

    Esma,
    I'm no authority on this but isn't the MediaPlayer thing something that is configured on the Browser? Often when downloading audio content from the web, you get this dialog asking whether MediaPlayer should play it inside the browser, and whether to remember this setting in future (per site, I think).
    Kind regards,
    Peter Ebell
    JHeadstart Team

  • Wrong file Downloaded for 9ias_aspkit_1200.zip

    Tried to download Oracle9iAS Migration Kit for ASP software from the following web page, URL:http://otn.oracle.com/software/tech/migration/asp/content.html
    link: 9ias_aspkit_1200.zip (46,606,647 bytes)
    The file that downloaded from that link was: 9iAS_aspkit_1200.tgz
    from: http://download.oracle.com/otn/nt/omwb/asp/
    The links to the other two options appear to go the files indicated on the web page for Solaris and linux but not the zip file.

    Thanks -- this will be fixed today.
    Regards,
    OTN

  • File Download for custom extension

    Hai friends,
    I have a task in which i need to download a file( <filename>.far), which is user defined extension.
    how can define a WDWebResourceType ?
    I used  the code line
    WDWebResourceType FILE_EXT = WDWebResourceType.getWebResourceTypeForFileExtension("far");
    but it returns null.
    Thanks
    krish

    probably this exception is coming bez of not able to find the "far" file ext.
    Try this might  hlep you
    WDWebResourceType FILE_EXT = WDWebResourceType.DOC;
    thanks

  • Reg RFCSDK files download for reading file in the background.

    Hi All,
    I am trying to read a file in the background for which I need the RFCSDK. i am using R/3 Version 4.6C...
    I searched every where in the service market place but with no luck. Can any one tell me if there is any other location to find the same.
    <removed by moderator>
    Any help would be highly appreciated.
    BR,
    Krishna.
    Edited by: Thomas Zloch on Oct 25, 2010 9:58 AM

    Hi Krishna,
    Try at below link,
    [http://blogs.msdn.com/b/adapters/archive/2007/10/07/obtaining-the-rfc-sdk-unicode-libraries-from-sap-service-marketplace.aspx]

  • How to make automatic download for mp3 files [80 gb of mp3 files stored in GoDaddy]

    I'm building this site --> Matthew
    I want my visitors to download the mp3 simply by clicking the "down" blue icon. But here's the challenge, I can't do "Link to File" cause I have a lot mp3 files [80 gb total]. I believe Muse can't carry those in one file. I already stored those in my GoDaddy account.
    Right click "Save Links as.." is not an option.
    Hopefully there's another way to do it.
    Thanks!
    Debs

    Hello,
    Please look at the link below:
    Force a File to Download Instead of Showing Up in the Browser « Tips and Tricks HQ Forum
    There is a section with heading that has 3 advises under heading "How to force a file download for all my files". you can use option 1 or 3.
    Regards
    Vivek

  • Make files downloadable from outside tomcat(web) context

    Hi there,
    I made an application on whicht people can upload word/pdf files.
    I put them in a dir called /opt/customer/2342/ , where 2342 is the customer id.
    The files are stored there, because I don't want people to be able to just download the files by using http://www.blahblah.com/customer/2342
    Now I want to create a servlet or jsp file that is able to make the files downloadable for specific users.
    Of course I can find the files using java.util.File. But I don't have a clue how to make them downloadable from this path. Should it be something with a FileStream... ?? And adding the mime-type?
    Can anybody give me some hints on making files downloadable from a specific dir?
    Thanks in advance.
    Jeroen van Hertum

    here is a servlet that is used to load files that are stored on the file system. The user submits the file path releative to a know file path.
    package common.servlet;
    import java.io.*;
    import java.net.*;
    import javax.naming.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import org.apache.log4j.Logger;
    public class FileResourceServlet extends HttpServlet
        // -------- Static fields ----------------------------------------------
        // Logger
        private static Logger logger = Logger.getLogger(FileResourceServlet.class.getName());
         * Root context for all JNDI lookups
        private static final String ROOT_CONTEXT = "java:comp/env";
         * JNDI lookup name of the binary path value
        private static final String BINARY_PATH_KEY = "binaryPath";
         * Default in case looking it up from the environment fails
        private static final String DEFAULT_FILE_RESOURCE_PATH = "/home/cp/bin";
        // -------- Fields -----------------------------------------------------
        private String fileResourcePath = null;
        // -------- Methods ----------------------------------------------------
         * Initializes the servlet.
        public void init(ServletConfig config) throws ServletException
            super.init(config);
            try
                //Get Norm's info
                Context initCtx = new InitialContext();
                Context envCtx = (Context)initCtx.lookup(ROOT_CONTEXT);
                fileResourcePath = (String)envCtx.lookup(BINARY_PATH_KEY);         
            catch( Exception e )
                logger.error("Error looking up file resource path, going with " +
                             "default value - " + DEFAULT_FILE_RESOURCE_PATH, e);
                this.fileResourcePath = DEFAULT_FILE_RESOURCE_PATH;
            logger.debug("File Resource Path:" + fileResourcePath );
         * Destroys the servlet.
        public void destroy()
         * Processes requests for both HTTP <code>GET</code> and <code>POST</code> methods.
         * @param request servlet request
         * @param response servlet response
        protected void processRequest(HttpServletRequest request,
                                      HttpServletResponse resp)
                                      throws ServletException, IOException
            ServletContext sc = getServletContext();
            String pathInfo = request.getPathInfo();
            logger.debug("Path Info: " + pathInfo);
            if (pathInfo!=null && !pathInfo.startsWith("/")) pathInfo = "/" + pathInfo;
            String filename = fileResourcePath + pathInfo;       
            logger.debug("Binary Filename:" + filename );
            // Get the MIME type of the image
            String mimeType = sc.getMimeType(filename);
            if (mimeType == null)
                //sc.log("Could not get MIME type of " + filename);
                logger.warn("Could not get MIME type of " + filename);
                resp.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
                return;
            // Set content type
            resp.setContentType(mimeType);
            // Set content size
            File file = new File(filename);
            resp.setContentLength((int)file.length());
            // Open the file and output streams
            FileInputStream in = new FileInputStream(file);
            OutputStream out = resp.getOutputStream();
            // Copy the contents of the file to the output stream
            byte[] buf = new byte[2048];
            int count = 0;
            while ((count = in.read(buf)) >= 0)
                out.write(buf, 0, count);
            in.close();
            out.close();
         * Handles the HTTP <code>GET</code> method.
         * @param request servlet request
         * @param response servlet response
        protected void doGet(HttpServletRequest request,
                             HttpServletResponse response)
                             throws ServletException, IOException
            processRequest(request, response);
         * Handles the HTTP <code>POST</code> method.
         * @param request servlet request
         * @param response servlet response
        protected void doPost(HttpServletRequest request,
                              HttpServletResponse response)
                              throws ServletException, IOException
            processRequest(request, response);
         * Returns a short description of the servlet.
        public String getServletInfo()
            return "Short description";
    }

  • In 6/2009 I bought iWork Family pack and have used it on two computers. Now I want to download iWork to my iMac but there is no way via the App store. How do I install the iWork bundle I paid for.

    In 6/2009 I bought iWork Family pack and have used it on two computers. Now I want to download iWork to my iMac but there is no way via the App store. How do I install the iWork bundle I paid for.i

    As of a minute ago you can still download the trial at this link. Note: clicking the link will automatically start the download.

  • How to get file download dialog box in IE 6.0 for .CSV files?

    In our Java application, when we download .csv file (by clicking a tool bar button or menu item) in IE 5.5, it brings up the download dialog box and when we click the open button it opens the file in a seperate browser window but after migrating to IE 6.0 it doesn't bring the download dialog box and we are not able to open the excle sheet in a new browser window.
    We tried downloading .csv file in IE 6.0 by changing its extension(such as .cs1 and .xls) even then it did not work.We also tried associating CSV type of extension with "Microsoft Excel Comma Separated Values File" in the Windows folder options (Windows Explorer->tools->folder options->file types(tab)), which did not work.
    Please respond if you have come across this kind of issue and solution for the same.
    Thanks in Advance

    This has nothing to do with Java. It's Microsoft
    setting for known file type. IE is responding to the
    setting which will automatically download known file
    type (MIME type).
    To show the "Save As" file dialog, you have to do the
    following (for each file type)
    1. open Window Explorer
    2. click on Tool-->"Folder Option"
    3. click on the "File Type" tab
    4. select the extension and then click on the
    "Advance" button
    5. Check the "Confirm open after download" checkbox
    6. Click OK
    IE should now display the "Save As" file dialog for
    that extension. Remeber, you have to to this for all
    extension you want to see a "file dialog" pop up.Unfortunately this is not the only cause. Even with this box checked, downloading java source files from the pages of The Java Tutorial causes them to open in the most recent IE - I (and others also) don't get the save/open dialog box. Java source files downloaded from (some) other websites result in the save/open dialog box. I believe that one of the security changes that MS made in IE's handling of files is the cause. The setting of content-disposition by the server appears to be the key, according to MSDN information.

  • Adding a new layout for DME for file download

    Hi All,
    How do i add a new layout for file download in DME?
    Thanks
    William Wilstroth

    This problem is solved.
    Need to enhanced the T042O table.

  • Change File Name In The "File Download" Dialog Box For Web Reports

    Hi All ,
    I followed the below note to change the "File Download" name.
    How To Change The File Name In The "File Download" Dialog Box For Web Reports? Doc ID: Note:418366.1
    However its not working. Has anyone tried this and works fine ?
    Basically I wanted to change the name "rwservlet" when a report is run in an
    excel format.
    Rajesh Alex
    Rajesh Alex

    Hello,
    Have you checked if a HTTP header "Content-disposition" is returned ?
    You can use ieHTTPHEaders for IE
    http://www.blunck.se/iehttpheaders/iehttpheaders.html
    and
    Live HTTP Headers for FireFox
    https://addons.mozilla.org/en-US/firefox/addon/3829
    Regards

  • File Download not working for anchor tags

    Hello,
    I've encountered a bug with the 4.1.31 version of Tomcat. Apparently, when
    I use an anchor tag for a file, and I click on the link, it does not show the
    file download message "Do you want to open or save this file?" with the open
    and save options. Instead, it displays the file in the browser. I know you
    could normally save this information from the browser to a file, but I need it
    to show the download message because it's easier for users to save their
    file. I'm using Internet Explorer version 6, SP2. I've also tried setting
    the "Confirm open after download" check box for file types to no avail. It
    use to work in Tomcat 4.1.18.
    Any help would be appreciated.

    Can anyone pls. help me ? I tried all options from disbling firewall to uninstalling Bonjour.. But nothing works. Had I known that Apple makes such worst software I would never have bought iPhone !!!! Apple really *****!!!!!!!

  • File formats for uploading/download

    Hi Experts,
    Loading of data(master/transaction) involved two steps.
    1. Loading file to Data files folder .
    2. From Data file folder to BPC application.
    For step1, what are BPC allowed file formats? Is it only .txt & .csv?
    For step2 , what are BPC allowed file formats?
    For downloading data from BPC to flat files, what are allowed file formats?
    thanx,

    Hi,
    You should be able to check the DEFAULT_EXTENSIONS parameter in the application set parameters to see what is allowed and control allowed file types. You can see the documentation on this topic here: [http://help.sap.com/saphelp_bpc75_nw/helpdata/en/f7/d21edd2f4c4f78b0a5be2b16e19ca1/frameset.htm]
    As far as file types for export, this is determined by the data manager package exporting the data. I believe the delivered data manager packages usually export in a CSV format with a file extension of your choosing, but a custom package could export data in any format required.
    Ethan

Maybe you are looking for

  • Movement type for transfer of stock from Stock-in-transit to Vendor

    Hello, Is there any movement type for transfer of stock from Stock-in-transit to Vendor. For internal transfer from Plant to Plant we follow Purchase Requisition -> Stock Transfer Order (PO – Modified) -> Delivery (VL04) -> MIGO (Goods Receipt agains

  • Calling procedure in oracle forms

    Hi all,i have a procedure in the backend and when i am calling it in forms nothing happens.The procedure is syntactically correct. Procedure PROCEDURE XXC_MTL_TRANSACTIONS(v_file_number IN VARCHAR2) IS BEGIN INSERT INTO mtl_transactions_interface    

  • Gentoo Linux RotateEffect.java wont work?

    I'm trying to run the TestEffect and RotateEffect code from the JMF solutions but it will not run under Gentoo Linux with this error: java TestEffect file:bluescreen2.mov Video format: JPEG, 160x120, FrameRate=12.0, Length=3574 The input format is no

  • Intercompany Stock Transport Order

    Hi MM Gurus, I know how intra company STO works. Can anyone explain me the intercompany STO with its configuration, master data and steps to perform? Also, I believe, we have to use document type NB for STO. Then what vendor is to be used for this ST

  • How to display employee no in group tree without separator and decimals

    Post Author: makk07 CA Forum: Formula Hi Everyone,   In my database the employee number is stored as follows:8,367.0029,785.00140,742.00   And in the report I have a group based on formula to display employee name and employee number. My formula is a