Ability to download whole dashboard page into Excel/Powerpoint File

Folks,
i think this may be unique requirement or may be someone tried it,
from the Out of Box functionality, we only have ability to download the each report on a page to a MS Excel or power point
but i am looking on how to implement the functionality of downloading all the reports in the page/or the whole page itself into excel or powerpoint using click of button as we do have download into pdf/html versions.
i tried to hijack the existing pdf/html code, but did not work
any ideas/suggestions if this can be implemented or code that i can use
Thank You
Kumar

Hi friend,
you must use BI Office for that. To install it, log on Presentation Service with your user, click 'More Products' -> BI Office. Install it, and the, open excel or powerpoint. You will have a new menu where you can download reports as you are in Presentation Service.
Regards.
Edited by: Hammett81 on Jul 30, 2010 9:16 PM

Similar Messages

  • Download entire dashboard page to excel or powerpoint

    Hi all,
    I have a requirement to download entire Dashboard page in obiee 10g version ...not report by report but the entire page. Please let us know if its possible and how?
    Thank you
    Edited by: 991740 on May 13, 2013 9:07 AM

    Thank you Srini, but I check it before and found that i get a line instead of entire graph and it is def not wanted
    "a class="NQWMenuItem" name="pdf" href="javascript:void(null)" onclick="return PortalPrint('saw.dll?Dashboard&_scid=KLMwSV8VpLQ&PortalPath=/shared/WDI\x2520Reports/_portal/Continuous\x2520Improvement&Page=Well\x2520Overview\x2520-\x2520Tier\x25201&Action=Print&Format=excel',true);">Excel "
    Do I have to change anything to make the above code work?
    Edited by: 991740 on May 13, 2013 9:45 AM
    Edited by: 991740 on May 13, 2013 9:46 AM
    Edited by: 991740 on May 13, 2013 9:47 AM

  • Ability to download the whole dashboard page into MS Excel or powerpoint

    Folks,
    i think this may be unique requirement or may be someone tried it,
    from the Out of Box functionality, we only have ability to download the each report on a page to a MS Excel or power point
    but i am looking on how to implement the functionality of downloading all the reports in the page/or the whole page itself into excel or powerpoint using click of button as we do have download into pdf/html versions.
    i tried to hijack the existing pdf/html code, but did not work
    any ideas/suggestions if this can be implemented or code that i can use
    Thank You
    Kumar

    Hi friend,
    you must use BI Office for that. To install it, log on Presentation Service with your user, click 'More Products' -> BI Office. Install it, and the, open excel or powerpoint. You will have a new menu where you can download reports as you are in Presentation Service.
    Regards.
    Edited by: Hammett81 on Jul 30, 2010 9:16 PM

  • Downloading entire Dashboard page

    Hello Guys,
    I have a dashboard page with about 6 reports and I need to download the entire dashboard page. I know to report links for individual reports but I want to know if there is a way to download the entire dashboard page at once (into one excel sheet)?
    Any help would be greatly appreciated.

    I don't know what you're envisioning when you say you want to download an entire dashboard page into Excel, but consider that a dashboard has many elements outside of just the "6 reports" you mentioned. Also, are the reports just tables or are there charts and conditional formatting (e.g., green, red, yellow balls, etc.)? Any of these features would make the download look ugly regardless of how you do it, but if you insist, here are a couple of options:
    Option 1
    1) Click on the dashboard print icon and select HTML.
    2) Save the file in .mht format.
    3) Open up Excel and navigate to the file.
    4) Select the file.
    Option 2
    1) Click anywhere in the dashboard and click CNTRL-A and then CNTRL-C
    2) Open Excel and paste.
    These are two ways you can have the whole dashboard in Excel.

  • Question on saving html page into excel

    hi all,
    i have one problem. Is there any ways that i can save a html page into excel??? that is to save the data displayed on the html page into excel spreadsheet.
    thanks for your advice.

    Even if you need to click a button to parse the page to a parser, you still need to transmit the page back to the server to process, unless you want the client to do it, in which case he/she will have to need a program.
    Given by the views floating around in this forum, the idea is that doing a re-query is as costly if not less costly than re-submitting the html page. By relegating to the back-end processing of data using the database, you can ensure the data is up-to-date and you can control the programs executing. That is, you are not worried about user submitting garbage html page for you to process.
    If you data size is not large, there is always the session memory to use but it's not really wise as your server's memory is much costlier than network bandwidth. It's the whole server becomes slow versus your DB connection slow.
    If you really need to use the re-submitting of your html page back to the server to process, you can always use hidden form values in html to post your data back. However, I can't remember whether there's a limit to the amount of data you can post. Think it's 1024K or something.

  • The pdf file that i am converting has multiple pages but the conversion only exports the 1st page into excel.  How do i get the product to include all pages on multiple sheets?

    Hi,
    The pdf file that I am converting has multiple pages but the conversion only exports the 1st page into excel.  How do i get the product to include all pages on multiple sheets?

    Hi christinek,
    Can you please tell me how the PDF that you're converting was created? Sometimes, PDF files created by third-party PDF generators (that is non-Adobe applications), don't contain all the tags and file information necessary to ensure a proper conversion to Excel. There are no settings that you can change in ExportPDF to adjust how the file is imported.
    You can tell how the PDF was created by choosing File > Properties in Reader and looking for the PDF Producer on the Description tab. If the PDF was created by a third-party, it just may not be written to spec. Please see Support Policy for PDF Files created by non Adobe applications.
    Best,
    Sara

  • User request to explore the possibility of downloading the distribution lists into excel for maintenance in t-code SO23.

    Hi Experts,
    There is a requirement from user that  "To explore the possibility of downloading the distribution lists
    into excel for maintenance in t-code SO23 ".
    Kindly provide your valuable informations/assistance in this regard.
    Madhavan K

    This Applesctipt will add comma's to the file count:
    (Copy into Applescript Editor, and Save as File Format: App, then just click the App to run)
    set x to choose folder with prompt "Choose Folder to Count Files" default location alias (the path to pictures folder as text)
    set filecount to do shell script "find " & POSIX path of x & " ! -type d ! \\( -name \".*\" -or -name \"Icon*\" \\) | wc -l"
    display dialog "File Count: " & comma_delimit(trim(filecount))
    on trim(someText)
              repeat until someText does not start with " "
                        set someText to text 2 thru -1 of someText
              end repeat
              repeat until someText does not end with " "
                        set someText to text 1 thru -2 of someText
              end repeat
              return someText
    end trim
    on comma_delimit(this_number)
              set this_number to this_number as string
              if this_number contains "E" then set this_number to number_to_text(this_number)
              set the num_length to the length of this_number
              set the this_number to (the reverse of every character of this_number) as string
              set the new_num to ""
              repeat with i from 1 to the num_length
                        if i is the num_length or (i mod 3) is not 0 then
                                  set the new_num to (character i of this_number & the new_num) as string
                        else
                                  set the new_num to ("," & character i of this_number & the new_num) as string
                        end if
              end repeat
              return the new_num
    end comma_delimit

  • Facing problem while downloading ALV grid Output into Excel

    Hi Guys,
    I am facing problem while downloading ALV grid Output into Excel.
    It is downloading into excel, but all character columns first and next all quantity columns it is displaying. But I need columns order as it is in the grid.
    If I take all columns as characters it works fine. But it will be problem for calculating total, subtotals of quantity columns
    Can someone help me regarding this
    thanks for your help

    Hi,
    Open up Excel on your desktop. Goto Tools > Macro > Security.
    Make sure that your security is set to Medium (or less). SAP uses OLE automation to run the Excel instance and in Office 2003 (for example), Microsoft has increased their default security setting to High. With the High setting, the output to Excel fails.
    Was this your problem? Don't forget those points, either.
    check with this wetther it is solved or not.
    Regards,
    sana.

  • Just download lion and my words/excel/powerpoint didn't work anymore

    Just download lion and my words/excel/powerpoint dont work anymore, any idea why?

    Office 2004 is a PPC (Power PC) based application.  That CPU stopped bing used more than 6 years ago, and there was a program called Rosetta which could run PPC apps.  But Lion does not support Rosetta, a fact which has been warned of for years.
    The only versions of Office supported in Lion are 2008 (if it was on already) or 2011 (new install).
    You can by Pages, iWorks, free Office-replacements like NeoOffice or Open Office or LibreOffice.
    Or pay $200 for Office 2011.

  • How do I scan multiple pages into one pdf file using the PIXMA MG7520 on Windows 8.0? Please help!

    I recently received a PIXMA MG7520 for a gift.  It works great with my lenovo laptop/tablet running on Windos 8.0.  The one drawback to the HP all-in-one that it replaced is it does not have an ADF.  That being said, there must be some way to scan multiple pages into one pdf file.  I need help figuring thing out.  Thanks in advance!
    Solved!
    Go to Solution.

    Hi mdtolbert54,
    There is a program that comes with the printer called the IJ Scan Utility that can assist you with scanning multiple pages into a single PDF document.  To do this, please follow these steps:
    1. On your keyboard, press the Windows key.
    2. Start typing IJ SCAN UTILITY. The search window opens as you type. Once the IJ SCAN UTILITY is displayed, please select and open it.
    3. In the Canon IJ Scan Utility window that opens, click SETTINGS.... in the bottom right of the window. The Settings dialog box appears.
    4. Click the DOCUMENT SCAN option on the left pane of the window.
    5. In the SAVE SETTINGS section of the window, you will select the save format and location of the document you are about to scan.
    a.) In the FILE NAME field, specify the name you would like to give the file. By default the filename will begin with IMG; you can remove IMG and change it to whatever you would like to name the file.
    b.) In the DATA FORMAT field, use the drop-down arrow to select the PDF (Multiple Pages) option. 
    c.) In the SAVE IN field, please navigate to the area where you would like the file to be saved once it is scanned in. By default, the file will be saved in the MY DOCUMENTS folder.
    6. Once all settings have been selected, click the OK button at the bottom of the window to save the changes. The IJ Scan Utility main screen appears.
    7. Click the DOCUMENT button. Scanning starts. Click the CANCEL button to cancel scanning if needed. Scanned items are saved in previously selected folder location specified in the SETTINGS... window.
    If you find that you need advanced scanning options such as adjusting resolution, brightness, contrast, saturation, color balance, etc. in addition to the options selected above, please click on the SCANGEAR button on the IJ Scan Utility Main screen, then adjust the items as necessary.
    Once the items above are set for document scanning, in the future, you will only need to launch the IJ Scan Utility, then press the DOCUMENT button to perform the scan (unless you want to make changes to the settings).
    Hope this helps!
    This didn't answer your question or issue? Please call or email us using one of the methods on the Contact Us page for further assistance.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • How do i scan multiple pages into one pdf file

    How do I scan multiple pages into one pdf file?

    That depends on your scanning software. Adobe Reader doesn't scan.

  • How to download a web page intact as one file, which can be easily done with Safari

    On Safari all I do with a complex web page is 'Save As (whatever I wish, or its existing description. That shows as a complete webpage in a single file. Firefox saves it as a file PLUS a folder of elements. Takes up twice my desktop real estate, and makes going back too complex. Chrome has a sort of fix which now only works occasionally. Am probably overlooking some kind of Ad-on, but have yet to find it. Any thoughts?

    Safari saves the web pages in the ''web archive'' format. Basically, it rolls every element of the web page into a single file. It provides the convenience of having everything in a single file but it may not necessarily mean that it saves space. Note that this format is not very portable - other browsers like Internet Explorer cannot open this web archive file.
    <BR><BR> Since Firefox saves the web page and its associated elements separately, it can be opened in any other browser. To allow saving web pages in web archive format from Firefox, you can try this add-on: [https://addons.mozilla.org/en-US/firefox/addon/mozilla-archive-format/ Mozilla Archive Format].

  • How export a pie graph(displayed in jspx page) into a PPT file.

    I am trying to export a pie graph(displayed in jspx page) into a PPT file using Apache POI. But I am facing a problem when I calling the below mentioned code from a button.
    Code:
    SlideShow slideShow = new SlideShow();
    Slide slide = slideShow.createSlide();
    FileOutputStream out = new FileOutputStream("slideshow.ppt");
    slideShow.write(out);
    out.close();
    The above mention code is working and a blank ppt file is created when I am running the code from a standalone java class. But when it is called from button in an adf project code is not throwing any exception but the ppt file is not created.

    Hi,
    sorry but the code snippet alone doesn't help to solve the problem. Did you debug the code to see if it works? My assumption is that the file gets written, just not in the directory you are looking at
    Frank

  • How to scan more pages into one PDF file using hP inkjet 2515

    Dear friend 
    How to scan more pages into one PDF file using hP inkjet 2515 

    Dear friend 
    How to scan more pages into one PDF file using hP inkjet 2515 

  • Scanning pages into 1 PDF file

    I have a Photosmart Plus B210 Series and a Mac OS X 10.6.6.  My problem is that I want to scan more than one page in a single .pdf or .jpeg file and I cannot figure out how to do it.  I can only scan one page per document.  Anyone have a solution?

    I'm not familiar with your model, but for my Photosmart D110, there is a check box after selecting Scan Document in the Solutions Center, then Scan at the bottom of the next window that specifies scanning each page into a different file.  This box must be unchecked in order to create multi-page file.

Maybe you are looking for

  • Execution of remote script in File Adapter OS Command

    Hello. I'm having issues with a remote script placed on a file adapter which fails to execute in a clustered PI (Version 7.1), running on Windows 2008. Our current setup is as follows. - Machine A and Machine B make up a SAP PI Cluster node. - Machin

  • Video problems after 10.0.5 update

    Ever since I updated to Final Cut Pro X 10.0.5, all of my video has a green tinge at various places during the playback. Not sure how to correct it. It happens on my existing projects and new video I import. Here is an image of what I'm seeing, but i

  • Browsing backwards (in time) on the guide

    When I want to move forwards in time on the guide I can use the right arrow to move in 30 minute blocks.  But, there does not appear to be a way to go backwards!  Sporting events almost always run over their allotted times and unless you knew already

  • Album reviews not appearing?

    I know this has been asked a few times by others but not answered yet. My album is up on itunes but of the reader reviews I know have been written, only one ever appears. Other people assure me they can see them all. Why is this? Someone suggested th

  • Thread Safeness of JDBC Drivers

    I am having lots of problems with accessing the database through Oracle's thin/thick JDBC drivers in a multithreaded applicaiton. Does anyone know anything about how thread safe are Oracle's JDBC drivers? I am using one connection in all the threads.