How to open *.pdf files in BOXI r2 inbox

I am scheduling as  *.pdf file for deski report.After scheduling i am getting *.pdf in my inbox.if the report is deski or webi we can use FC_REPORT_ENGINE or WI_REPORT_ENGINE to open the report's using java code.In same way how to open *.PDF file in Inbox?
Edited by: ramkishore kishore on Nov 7, 2008 8:31 AM
Edited by: ramkishore kishore on Nov 7, 2008 8:31 AM

Hi Ram,
Following information might help you to resolve the issue.
After logging into Desktop Intelligence, you may be presented with a message stating:
u201CYou have received 1 document from users"
Examining the Inbox from within the Desktop Intelligence client shows no objects visible in your Inbox.
The object in your Inbox is in a format other than Desktop Intelligence format such as, PDF, XLS or other format. Therefore the object is not recognized by the Desktop Intelligence client inbox browser.
Log in to Info View or the Central Management Console, browse to your Inbox and verify the file name and format that has been sent to your Inbox. The object may be saved, copied, moved or deleted as necessary.
Regards,
Sarbhjeet Kaur

Similar Messages

  • How to open PDF files in Safari

    How does one open PDF files when using Safari

    Typically, you click on a link to a pdf file, and they open. If for some reason that's not working, you can right click on the link and download the file, then it should open in Preview, or Adobe Reader if you've installed that.
    What exactly are you trying to open, and what's happening when you try it?

  • How to open pdf files in browser using flex

    hi,
    my project is having a Document explorer wchich contains pdf
    files,iwant to open it in the browser.can any one tell me how to
    open pdf documents using flex programming(i tried with different
    thing like swf's but my client wants only pdf formatt).

    Another option is by calling a JSP page. This example will
    open a pdf file into a new browser without displaying the download
    "save" prompt.
    Function to call the JSP:
    private function downloadFlyer(event:Event):void {
    var jspLink:URLRequest = new
    URLRequest("jsp/downloadpdf.jsp?fileName=Fundraiser_flyer_2008.pdf");
    navigateToURL( jspLink, "_blank" );
    JSP code:
    <%@ page errorPage="error.jsp" %>
    <%@ page import="java.io.*" %>
    <%
    //Get the parameters
    String downloadFileName=request.getParameter("fileName");
    String fileName = application.getRealPath("/downloads/" +
    downloadFileName);
    File file = new File(fileName);
    if (!file.exists()) {
    throw new IOException("File does not exist.");
    // Get the size of the file
    long length = file.length();
    // You cannot create an array using a long type.
    // It needs to be an int type.
    // Before converting to an int type, check
    // to ensure that file is not larger than Integer.MAX_VALUE.
    if (length > Integer.MAX_VALUE) {
    throw new IOException("File too big.");
    response.reset();
    response.resetBuffer();
    response.setContentType( "application/pdf" );
    response.setHeader ("Content-Disposition", "filename=" +
    downloadFileName);
    //Prevent the Java error: "getOutputStream() has already
    been called for this response"
    out.clear();
    out = pageContext.pushBody();
    InputStream in = new FileInputStream(file);
    OutputStream output = response.getOutputStream();
    try {
    int curByte=-1;
    while( (curByte=in.read()) !=-1){
    output.write(curByte);
    } catch (IOException ioe) {
    ioe.printStackTrace(System.out);
    } finally{
    output.flush();
    in.close();
    response.flushBuffer();
    %>

  • How do open PDF file with Adobe Reader?

    I failed to open PDF file with Adobe Reader? Please show how to fix it.

    Mac or Win? OS and Reader versions? Where is the file and how did you try to open it? What happened when you tried? Any error messages? Details, please.

  • How to Open PDF Files Embedded in an Excel File

    This is a solution for Mac users who need to open .PDF files that are embedded inside an Excel file created in Office for Windows.
    I hope this solution works for other file format combinations. I am doing some experimentation to find out and will repost if I have new learnings.
    Problem:
    - Colleague sends me a .XLS which has an embedded .PDF on one sheet
    - Office: Mac 2011 will not open the .PDF because of lack of OLE support
    Solution:
    - Copy the .XLS file to a new file
    - Rename the file from <filename.xls> to <filename.zip>
    - Open the .ZIP with Archive Utility
    - Browse into the resulting "decompressed" folder to filename > xl > embeddings
    - Find the file of interest, named something like <oleObject2.bin>
    - Rename to <oleObject.pdf>
    VOILA!
    The PDF is recovered in its fully glory.

    Hi Ram,
    Following information might help you to resolve the issue.
    After logging into Desktop Intelligence, you may be presented with a message stating:
    u201CYou have received 1 document from users"
    Examining the Inbox from within the Desktop Intelligence client shows no objects visible in your Inbox.
    The object in your Inbox is in a format other than Desktop Intelligence format such as, PDF, XLS or other format. Therefore the object is not recognized by the Desktop Intelligence client inbox browser.
    Log in to Info View or the Central Management Console, browse to your Inbox and verify the file name and format that has been sent to your Inbox. The object may be saved, copied, moved or deleted as necessary.
    Regards,
    Sarbhjeet Kaur

  • How to open PDF file from WinHelp

    Hello everyone
    I hope someone can help me with a little problem I have.
    I have read the topics about using the ExecFile macro to open
    pdf files that will always be at a specific location on a computer.
    However, I would like to open a pdf that can exist anywhere
    on the Computer, because it is possible to install our software
    anywhere on the Computer, and as our software is rebranded the file
    structure changes for each brand.
    please can someone come up with an answer to this llttle
    teaser?
    Many Thanks
    Sean

    Hello everyone
    I hope someone can help me with a little problem I have.
    I have read the topics about using the ExecFile macro to open
    pdf files that will always be at a specific location on a computer.
    However, I would like to open a pdf that can exist anywhere
    on the Computer, because it is possible to install our software
    anywhere on the Computer, and as our software is rebranded the file
    structure changes for each brand.
    please can someone come up with an answer to this llttle
    teaser?
    Many Thanks
    Sean

  • How to open pdf file in jsp having spaces in file name ?

    hi all,
    i have to open a pdf file in a jsp but some times that pdf file has spaces in the filename
    <a href ="openPdf.jsp?fileName=xyz.pdf">some  pdf file.pdf </a>how to open the pdf file in this case

    more info: java.net.URLEncoder or use response.encodeURL(...) to ensure sessionid is added when cookies are disabled

  • How to open PDF file generated by some ashx handler using POST parameters in Internet Explorer for W

    I need to print content of pdf file by JavaScript.
    To do this used HTML like this:
    <OBJECT id = "Pdf" data = 'http://someurl.com/getpdf.ashx' name="Pdf2" WIDTH="300" HEIGHT="300"></OBJECT>
    <a onclick="document.Pdf.PrintWithDialog() ;">Print file</a>
    But to get pdf file I must POST few parameters to handler http://someurl.com/getpdf.ashx. How I can do it?

    Hi Hi Sven,
    Could you please tell me the type of report you were trying execute? Is it ERP or BW? And ALV or non-ALV?
    We are supporting PDF report output type only for BW reports and for ERP non-AVL reports. For other types PDF format is not supported.
    If you configure PDF for other report types then you will get report output in PDF file in SharePoint server, but you will face above error message while opening the file.
    Regards,
    Binson

  • How to open pdf files in FireFox through jsp page?

    hi all,
    i have a problem when i click the link in jsp page. whenever i am clicking the jsp page link it wants to open a pdf file, the pdf file is located in remote system. its working properly in Internet Explorer. but i am opning this in FireFox means its not opening. In firefox url that is not showing the exact path. optionally its showing like that:
    http://172.16.2.21:9090/FMS/source/
    journal/%5C%5C172.16.2.1%5C
    copyediting%5CELS%5C
    Manuscript_Screening%5CMS%5C
    RDTEST%5C02-Process%5C
    RDTEST-D-08-02051.fdf
    and my jsp code whichever working fine in Internet Explorer is :
    <%
    String newpath="\\\\172.16.2.1\\copyediting
    \\ELS
    \\Manuscript_Screening\\MS\\RDTEST\\
    02-Process\\RDTEST-D-08-02051.fdf";
    %>
    <a href="<%=newpath%>" target="dynamic"></a>can any one solve my problem. as soon as possible. thanks in advance.

    hi Edmondo ,
    This is html generated jsp compilation code.
    link1
    can u please give me the solution. thanks in advance......

  • How to open pdf files on computer while getting error message?

    I can not open pdfs on my computer that I was priorly able to open. This includes files I have scanned in, email attachments, and files I have converted to pdfs. I keep getting an error message in Adobe saying that it is not a supported file type or the the file has been damaged. Please help!

    What is your operating system?  Reader version?
    Can you open such a PDF in a text editor, then copy and paste the first few lines here in the forum?

  • How to open pdf file in safari using adobe reader

    I am trying to open a pdf file, that is a fillable form, however I get the following message:
    Please wait...
    If this message is not eventually replaced by the proper contents of the document, your PDF viewer may not be able to display this type of document.
    You can upgrade to the latest version of Adobe Reader for Windows®, Mac, or Linux® by visiting http://www.adobe.com/products/acrobat/readstep2.html.
    For more assistance with Adobe Reader visit http://www.adobe.com/support/products/ acrreader.html.
    Windows is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. Mac is a trademark of Apple Inc., registered in the United States and other countries. Linux is the registered trademark of Linus Torvalds in the U.S. and other countries."
    I have followed the link above and downloaded the new version but I keep getting this message.
    can anyone help?

    it didnt work, i tried chrome as well, but now found a way around it, actually the system was set to open files in the previewer, so I had save as the pdf file and then open it with pdf, and it worked.

  • How to open pdf files sent to my iPad by e-mail

    Just bought Create PDF for iPad. Tried to open a pdf attachment using your suggested way (open with...) on the mail menu but the option to open with Create PDF wasn't there. Can you help me with this? Cheers!

    Hello pawibbel,
    I know, Australia is much bigger than Austria . Never the less my
    nickname is *AustriaXL not Austral*iaXL...
    Regards from Vienna, Austria
    Am 30.08.11 21:06, schrieb pawibbel:
    Thank you AustraliaXL. You are correct. The app is intended to create PDF files from files that are not already PDF's.
    >

  • How to open PDF files on HP 32 tp

    Please help. I'm trying to open PDF or mime files on my HP 32 bit tp
    Thanks.

    I know it may seem like a weird question, but are you running the default WebOS software on your TouchPad?
    The reason I ask is that many folks may have bought a TP and then installed a copy of Android on it.
    By default, your TP should be able to open PDFs and media files.  What kind of error message or action is happening when you try to read a PDF?
    Mark
    Messing with computers since 19...
    20+ year veteran of HP, Compaq, and DEC...took EER in '07

  • READER XI - How to open PDF files with bookmark pane minimized (hidden)

    In Reader XI, cannot make the Bookmark Pane minimized (hidden) by default, and it opens for many PDF files that do not need it.  I want to locate a setting or option that allows opening of PDFs without the Bookmark Pane opening.

    "Google" is a search engine (website) and NOT (repeat: NOT) a PDF viewer. It can't and won't open PDFs in any real or imaginable way.
    Firefox added their own proprietary PDF viewer with version 20 - they're on 21 now. I'll be the first to admit "it sucks". You CAN'T fill in PDF forms with it, and you can't email them from the page like with Opera, Safari or Chrome (which use the reader plug-in still).
    Unfortunately, the ONLY option you have now that they've added it and killed the ability for the Reader plug-in to work with Firefox, is Tools>Options>Applications - select Portable Document Format(PDF) and choose "Use Adobe Reader (Default)". What that will do is FORCE Firefox to download the PDF instead of opening it in their terrible PDF viewer in the browser window.
    Or... use one of the other browsers I mentioned. They're all free.

  • How to open pdf file using flash

    i have problem with this file pdf file opens in flash it was working but  pdf file was open in same browser can i open it sapropte browser window i am learner in coding so please guide me.
    using this code.
    on(release){
        getURL("file://e:/SBI updated/New Kcc Sheme 2012/common/pdf/KCC New Documents ANNX.pdf");

    I have no idea what "sapropte" means, nor does Google translate.  If by chance you mean you want to open a new browser window then specify the window argument (look up the getURL function for other options)
    getURL("file://e:/SBI updated/New Kcc Sheme 2012/common/pdf/KCC New Documents ANNX.pdf", "_blank");
    If the problem is that the file does not open when you test on a server it might be because you are targeting a folder on the computer instead of on the server.

Maybe you are looking for

  • Mini DV Camcorder

    Hello, I have an old analog camcorder, and am ready to purchase a mini DV camcorder. I am interested in transferring to i Movie and then edit and burn DVD's. I have been told that the Canon ZR series is excellent for compatibility with i Movie. Does

  • Why won't my image appear?

    Hi I have just created a website, have just uploaded it to the web and want to make a facebook link.  I have read all the facebook info about og and have debugged and made a gazillion alterations to my html page and reloaded it but for the life of me

  • Until external monitor update, how to mirror using thunderbolt?

    What is the preferred method of mirroring FCP X on an HDMI monitor? I would assume that I need a thunderbolt to HDMI cable? Then what? Cheers. Tom

  • Report Sales & Purchases for material

    Hi gurus, We search a report o transaction where it shows sales and purchases for material in a specific date or period. Any idea? I will reward with points all answer!! Thank you!!!!

  • Create OLE DB synthetic that has failover ability if proxy is down much like resource pools

    As the title indicates, I would like to create a monitor that is fault tolerant and queries an OLE DB datasource.  Today you can target multiple agents to perform a synthetic transaction using the OOB templates, however I only want a single agent per