Send book marked reports to an iView

Hello All,
In web application designer is there away to send book marked reports to an iView instead of to internet explorer? 
Thanks,
Nick.

Here is a great resource for sending binaries.
http://otn.oracle.com/sample_code/tech/pl_sql/htdocs/Utl_Smtp_Sample.html
You'll want to use utl_http to run each report with a destype=file and then have another procedure running to check to see when all of your reports have finished. After they are finished, you would run the stored procedure to get all of the binaries, attach them in an email and then send it.
If you want to concate all of the PDF files into one large file, you can do this with a Java stored procedure using iText.
http://www.lowagie.com/iText/

Similar Messages

  • Book mark problem in SAP Bi web report with internet explorer 8

    Hi
    we recently started usig internet exlpore 8.0 for BI report, in that when we are click the book mark button it was not doing nothing. the same book mark option is working fine with Ineternet Exlpore 6.0
    Note:we are allowing the  Popup in IE8.0
    thanks
    Sudha

    Hi  Sudha,
    We had had the same issue, and we solved it reintalling the internet explorer (that was the faster and easier solution).
    [1159538|https://websmp130.sap-ag.de/sap(bD1lcyZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1100707] this note explain some errors with i-explorer 6 and 7, but it also happens with ie 8. In the note you have a "script" to be executed in the computer that have the error, but we didn't tested, we reinstall the ie directly.
    Regards and I hope it helps, Federico

  • Sending a bug report on the OS and a sleep mode problem.

    I find the bug button in Safari really convenient for sending Apple bug reports. And when other applications crash, you usually get an error dialog with a button to send a bug report. But sometimes problems arise that require reporting, but which don't fall in either of these categories. It would be very handy to have a bug "button" for the OS, or perhaps just a menu selection in the Finder menu bar that invokes a bug report dialog box. I know you can dig around and find the URL for Apple's bug report web page, but I am always forgetting it -- I suppose I could just bookmark it, but then I'd just have to dig around in all the bookmarks to find it. Better would be a utility built-in to the OS for sending bug reports (like Safari's). It could also automatically transfer necessary info about the OS rev and such.
    The problem I had was this. I have a script that puts my iMac to sleep. I put the script alias on the task bar and a single click puts the computer to sleep (easier than using the menu). Unfortunately, I sometimes click it by mistake when I am trying to click an adjacent icon in the task bar, and the Mac starts going through its cycle to enter sleep mode and is impervious to anything I do to try and cancel it. I tried pressing the space bar continuously to prevent it from going to sleep, but that did not work. Worse, when it went to sleep and I woke it up again, the task bar would not appear, clicking on app windows did not activate them, Finder menus could not be selected, etc. The cursor would move, but I could not do anything else. (I wish now I had noted if the clock in the menu bar was still advancing, but I didn't think to do that.) I powered down the iMac from the power key and rebooted. Things are working fine now.
    I wanted to send a bug report on this, but realized that unlike Safari, there was no button or menu selection for doing that. So here I am.
    Any suggestions are welcome.
    TIA,
    Drake

    [email protected]
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Is there any way to determine if a link is a book mark or hyperlink in java script

    Is there any way to determine if a link is a book mark or hyperlink in java script
    Sub Problem:
    I am making an array of quads of all the hyperlinks in a document. I would like to automatically skip over all the bookmarks in the starting pages of a document and just get the links of the hyperlinks.
    Now I have to manually set the pages that contain bookmarks so they are not included in the array.
    Is there any way to determine if a link is a book mark or hyperlink in java script?
    It would help automate the conversion I need below
    John
    Main Problem:
    I have been working on converting a set of pdf files with 1000’s of hyperlinks like www.site.com\folder1\file1.pdf#page=10
    To jump to a local copy of the files with a relative type link
    ../folder1/file1.pdf and then go to the proper page.
    I have found that it can be done manually by changing the hyperlink to a javascript
    var otherDoc = app.openDoc('../folder1/file1.pdf', this);otherDoc.pageNum = 10 - 1;
    and setting each destination file with a disclose()=true;
    Based on the help so far that java script cannot access the hyperlink value in a link
    See: http://forums.adobe.com/thread/1039908?tstart=60
    I have resorted to the following plan using acrobat javascript, an external keyboard macro recorder and excel in combination to get around the problem
    Four folder level acrobat javascripts with “buttons”
    One to get all the link quads in an array, in the pdf and report the total number
    The second creates a form field in the far corner of the first page and moves there.
    The third jumps to each link found by creating a form field just to the left of the link and zooms in so it can be selected by a “mouse click” from the keyboard macro recorder 
    The forth deletes the form field
    The keyboard macro recorder runs javascript 2 and then 3 then clicks on the link just to the right of the middle of the screen and uses keys to get to the advanced editing to get to edit the hyperlink .
    The hyperlink is then copied to excel where it is converted using string functions to the needed javascript text to be copied back.
    To the acrobat file into a java script (after deleting the hyperlink)
    Rinse/lather/repeat
    I have been able to convert about 150 links an hour.
    Better then hand typing, but not like having java access to the links.
    I am looking to improve the solution

    thanks for your help.
    I may have been confusing a "acrobat bookmark" and a bookmark in a word file that is converted to a pdf and ends up being a
    link of the type:
    "Go to a page in this document"
    which I do not want in my array vs
    a link of the action type:
    "Open a web link"
    Which I do want
    John
    My code, note how I have to skip pages with "Go to a page in this document" links depending on the document, I would like to use the same code for each document and skip over the "Go to a page in this document" links :
    global.ilinkindex = 1; 
    global.aLinkquads = [ [0, 1, 1, 0, 0],
           [0, 0, 0, 0, 0] ];
    function GetLinkArray()
    global.ilinkindex = 1;
    var iTotalLinks=0;
    // for ( var p = 0; p < this.numPages - 8 ; p++)                   // end before bookmarks for each page of the file x.pdf
    //  for ( var p = 0; p < this.numPages; p++)                     // for each page of the file
    for ( var p = 23; p < this.numPages; p++)                     // start after bookmarks for each page of the file y.pdf
      var cropbox = this.getPageBox("Crop", p);
      var alinksonpage = this.getLinks(p, cropbox);            // get array of links on page
      for ( var ll = 0; ll < alinksonpage.length; ll++)
       var linkquads = alinksonpage[ll].rect;     // get link Quads
       linkquads[4] = p;          // add page number to link Quads array
        global.aLinkquads[global.ilinkindex] = linkquads; // add quads to global link Quads array
        global.ilinkindex++;
    iTotalLinks = global.aLinkquads.length - 1;
    global.ilinkindex = 1;
    app.alert("Number of Links in Document is " + iTotalLinks );

  • Book mark Icon is not working in Adhco queries?

    Hi,
    There is an Adhoc query created by the end user.The book mark icon available is not working but the CONTEXT MENU on any of the values is producing the book mark properly.Can just any one help me to find the solution of this?
    Why BOOK MARK ICON is not working?

    Hi,
    I observed the same, Book Mark Button availabe on web report is not working but Book mark URL can be saved with the context menu -> bookmark.
    need to check the Web template for  Book Mark.
    Bookmark URL can be saved and that URL is used to go fastly to the requied navigation fastly, that is the use of Bookmark
    hope this helps
    Regards
    Daya Sagar

  • Book marking feature in adobe presenter

    Is there a book marking feature in adobe presenter?

    The presentation is huge.  I can't send.  However, even on a single slide presentation when I add an interaction it does not work.
    Delete - for exampe if I try to use a process tab interaction, it starts with 4 tabs, but I only want 3 tabs.  How can I delete a tab.
    The label on the tab is too small - I need to put 3 words on it, can't I shrink text size or use more of tab.
    When I enter a graphic using the icon, it is not moveable and is not size right.
    I don't see how I can add text, etc to the interactions.  It seems to freeze, the instructions for how to edit interactions is very poor, so though very technical, I don't understand how to edit/add my own content to an interaction.  Aren't there more robust instructions with maybe a video demonstration on how to use, edit/customize interactions?
    Is there an option for allowing Flash that I should be setting on my computer?  That seems to be a potential problem, like enabling java?
    Thanks in advance for your help
    Susan
    Ride on......

  • I no longer have the option to "Send an Error Report" to Apple?

    After installing Mountain Lion last week, my apps are crashing like crazy. Why do I no longer get the dialog that asks me if I want to send the error report to Apple?

    No setting that does not enable automatic sending. Click the question mark at the bottom of the preference page for a description.
    You will be bale to set how you want the reports sent for an app to automatically, manually or never.
    Set reporting options
    If an app quits unexpectedly, or you must force an app to quit or must restart your computer, you’ll be offered the opportunity to collect information about the problem and send it to Apple.
    If you choose to send the data to Apple, you can then specify any one of the reporting options for future information collection:
    Automatic reporting
    No reporting
    Ask each time
    Automatic reporting of diagnostic and usage information is off by default, and occurs only if you have given consent.To select automatic reporting: When prompted, make sure “Don’t ask me again” is selected, and then click OK.After you click OK, automatic reporting of diagnostic and usage information begins, and information is periodically sent to Apple anonymously. You will not be prompted again unless you deselect “Send diagnostic & usage data to Apple” in the Privacy pane of Security & Privacy preferences.To select no reporting: When prompted, make sure “Don’t ask me again” is selected, and then click No Thanks. No information is sent to Apple.To select ask each time: When prompted, deselect “Don’t ask me again.” You then have the option to agree or disagree each time a diagnostic event described above occurs.
    Show
    But for this to work at all you have to have the checkbox checked.

  • Man this is totally frustrating.. I may jump to another provider - still unable to find my book marks 704-795-1836

    I hate it when you make changes my world was perfect before you made changes.. No i am totally bummed and can not find my internet explorer book marks.....AHHHHHHHHHHHHHHH. today I had a set of task and this change has taken my away from my priorities... come on you can do a better job....704-795-1836 glenn & christine

    I have asked a moderator to provide assistance, they will post an invite on this thread.
    Once you get a reply, if you click on their name, you will see a screen like this. Click on the link as shown below.
    Please do not send them a personal message, as they may not be on duty for a long time, and your message will not be tracked properly.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Creating book mark link

    Expects,
    I want to create bookmark link in the main dashboard,it should be did manually,but we have bookmark link under the edit dashboard we should not use this,
    I have created book mark link already but it is not satisfied to our client,Because if we apply filter in the dashboard the same date should be reflect when we use this book mark link,but it not showing that same result,
    it shows only what we have in report before applying the filter.
    Please give me the solution for this problem
    Thanks,
    Raju

    I am not sure if you can dynamically change the prompts in the bookmark links. It is possible to pass static prompts in the bookmark link, refer to the link below to understand how to do that:
    http://obiee101.blogspot.com/2008/12/obiee-creating-bookmark-and-or-prompted.html
    Thanks,
    -Amith.

  • Book mark icon in Adhoc query?

    Hi,
    There is an Adhoc query created by the end user.The book mark icon available is not working but the CONTEXT MENU on any of the values is producing the book mark properly.Can just any one help me to find the solution of this?
    Why BOOK MARK ICON is on

    Vasu,
    then there seems to be some issue with your ad-hoc template - was it modified in any way ? that could be causing this issue. If the temnplate was not modified then reactivate the same from business content and check.
    The ad-hoc template depends on your BI version. Which version of BI are you on ?
    Arun

  • Accurate OM booked orders report

    My objective is to develop a Booked Orders Report in Discoverer and I'm pretty new to Discoverer 10g.
    My logic to property display the records is -- for each order in OM that header status is booked, determine if ANY lines are still open by looking at the Open Flag and if any line is still open, display all lines associated with that order.
    example: SO# 100 has 4 lines where line 1 is open awaiting shipping (open_flag = 'Yes') and other 3 are closed (open_flag = 'No').
    maybe I'm going about this the long way so if you know a cleaner way, please share....
    The best logic in discoverer that I can come up with (based on the various line status fields) is that I can build a new calculation called l_open_flag that is setup as CASE WHEN "Order Lines".Open Flag = 'Yes' THEN '1' ELSE '0' and when I run the discoverer report, the l_open_flag is working and returning 1 or 0 as expected for each line.
    The next step is to setup a second calculation to sum the l_open_flag called sum_l_open_flag and add a second non-display parameter to display any order where header level status is 'booked' and the sum_l_open_flag > 0.
    the problem is that when I try to sum l_open_flag discoverer throws up a warning that I'm combining detail data point and an aggregated data point -- which I agree.
    After adding the new condition to include orders where sum_l_open_flag > 0, I still only get just the one line item out of the 4 lines on the order that is still open.
    Hope this is clear like oracle and thanks,
    Rob

    Hi rob,
    From your example i understood is if open_flag=Yes it is open and when No then it is closed.Your going in the right path by taking the case as you mentioned.
    But why are you taking the second condition sum(l_open_flag).definately it will throw warning.Why do you need this condition?Can you be clearer
    I sugest you take a second calculation as calculation2=l_open_flag>0,this suggests that when you are giving zero(0) it says that you want all closed sales orders.
    Anything more can you give more explanation.
    Best Wishes,
    Kranthi.

  • Everytime I shut down or close a Mozilla window I get a message asking to send an error report. why is it doing this?

    I have to send an error report every time I close a Mozilla window or shut down Mozilla. then I have to restart Mozilla to get back to the page I was on.

    Do you have any Norton products installed?
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    See also:
    *http://kb.mozillazine.org/Firefox_crashes
    *https://support.mozilla.org/kb/Firefox+crashes

  • Itunes Won't Open Send an error report!

    Hi I've just downloaded Itunes 6.0 and when I try to open it I get 'Itunes has encountered and error and needs to close send an error report?' I have read up on this and discovered that it may be a quicktime error so I went and downloaded quicktime seperatly with no luck. Then I read it may be C:\documents and settings\all users\application data\apple computer\itunes\sc info so I deleted it. No luck... does anyone else have any ideas? It stopped working when I downloaded the latest ipod update software for my ipod mini then it all stopped working I reallly need it to work for tommorow because I'm going on a long car journey and I want to be able to listen to my ipod. Thanks.
    Regards Ruairidh McHardy

    Have you had a look at these troubleshooting pages? They may be of some help:
    iTunes for Windows: Troubleshooting unexpected quits, freezes, or launch failures
    iTunes for Windows in Windows XP or Windows 2000 doesn't open after upgrading

  • "If you get this error while viewing a webpage, it means a plugin has crashed. You can send a crash report to Mozilla by clicking on Send crash report. " but why do I not get the button "Send crash report"?

    This is the most recent upgrade to my Firefox version 3.6.8
    Mozilla Firefox for Ubuntu canonical - 1.0
    Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.8) Gecko/20100723 Ubuntu/10.04 (lucid) Firefox/3.6.8
    Since then, every web page that makes use of the Adobe Flash plugin shows me grey windows with the message "Adobe Flash plugin has crashed".
    When I follow links telling me I can find out more I am taken to a Firefox Help page that shows an example of the same grey window with the same message. But there is a difference: directly under the "Adobe Flash plugin has crashed" message is shown a another message that says: "Send crash report". The Help page instructs me to click on that message because it is intended to be a link.
    Unfortunately, on all the grey windows displayed to me on any site where this problem arises, no such message: "Send crash report" is present. So how can I send a crash report?!

    You have the Ubuntu-specific build of Firefox - released as a package in the Ubuntu repository - and that has been built without including the ''crash reporter''.
    (So-called 'contributed builds' usually lack the updater - in the help menu - too, because they have their own updater.)

  • I can't get firefox to allow me to login sites or even send a crash report

    Had 3.6.7, worked fine. Upgraded to 9.0.1. Now logins won't respond to an attempt to enter. So I tried to send a dissatisfied report and it would not allow me to click on send

    Additional info: Removed 9.0.1 twice and downloaded 3 times. Need to get into my sites. I am a novice and rely on firefox to access my programs. 3.6.7 worked, but I no longer have that.

Maybe you are looking for

  • Https for SOAP and HTTP Receiver adapters in PI 7.1

    Hi, We need HTTPS Transport protocol is required to send the message to receiver systems. Currently we are using below procedures for https: 1)     HTTP with SSL (= HTTPS) without client authentication 2)      HTTP with SSL (= HTTPS) with client auth

  • Strange audio issue when running render queue via script.

    The issue I'm having with AE is odd, and I'm hoping someone may be able to shed light on the matter.  I have a very simple composition that, when I render out using the GUI, everything works as expected.  The video renders fine, the audio renders fin

  • All i wanted was for that stupid crackling noise to go a

    I bought a Sound Blaster Li've! 24-Bit today, hooked the hardware all up exactly as the manual said but when it came time to install the software, "Setup could not detect any Sound Blaster Li've! card on your system. Please ensure that your Sound Bla

  • HP officejet 9130 Prints Blank Pages

    Hp 9130 is full on ink and everytime I go to print it prints as normal, but only with blank pages. I have checked the print heads and ink cartriges and there is not tape on them that would prevent ink from coming out. I do not believe it is a issue w

  • Inventory cube maintenance

    Hi, We are using the inventory cube 0IC_C03 for the past 3 years and we have about 100 million records. We have a few reports running off the cube. Now because of the hugh amount of data the query execution takes a very long time approx 20mins. Are t