How to embed reports in an email using Scheduler

Hi all,
I am using the "schedule" option in a webi report to deliver a report through email in pdf format. However, our end users want the report data to be embedded in an email rather than as an attachment. We are using BO XI 3.1. I tried searching in google for more than a day and couldnt get any relevant info. Could someone please let me know if it possible to embed report data in an email ? If so, could you please share your notes.
thanks
Joe.

Hi,
Scheduling a webi document does not give the option to embed the report in mail body.
However, this is possible while scheduling a publication. You can create a publication for the webi report and schedule it with format mhtml to email. Please refer to the publication guide for details.
http://help.sap.com/businessobject/product_guides/boexir31/en/xi3-1_publisher_en.pdf
Regards

Similar Messages

  • How to embed the webcontent in Email

    Hi Everyone,
    would you kindly let me know how to embed the webcontent in emails.
    Thank you.

    Actually, i believe it is possible if you encoded the
    image file as a String, but still, why on earth you
    want to do it?!Doesn't have to be a string. You could hardcode an array of bytes, and create an image from that.
    IIRC that was a clumsy but useful technique prior to the introduction of jar files.
    I may be misremembering. Check the docs to confirm...

  • How do I  Send HTML formatted email  using  class in  javax.mail pkg

    How do I Send HTML formatted email using javax.mail pkg class ?i mean is thr any class available in this package to do this ?

    Please see
    http://javaalmanac.com/egs/javax.mail/SendApp.html
    for Quintessential Program to Send E-Mail.
    Then substitute line
    msg.setText(content);
    /with this one
    msg.setContent( content , "text/html");
    it should do in simplest form.

  • How to embed audio to my website using quicktime when I get "file not found

    hi,
    i've been trying to embed audio into my website all night and I get a file not found message even though I;ve checked 100 times and all files are where links say they should be..
    but even just linking to audio (mp4) files won't work...
    everything is o.k. with non-audio links on my website - only the mp4 audio can't be found.
    can anyone help me? or post the correct code?
    I've tried using these formats..
    <EMBED SRC="anymovie.mov" HEIGHT=176 WIDTH=136>
    <embed
    src="http://www.crossandthrone.com/.samples/qt/sample-reference2.mov"
    width="242" height="199" autoplay="false" loop="false"
    controller="true" bgcolor="#666666"
    pluginspage="http://www.apple.com/quicktime/"></embed>
    the pages that should play audio just have a quicktime file with a question mark on them
    help would be much appreciated!

    Start here:
    http://www.mediacollege.com/video/streaming/
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "subdued2u" <[email protected]> wrote in
    message
    news:gbg2th$r13$[email protected]..
    > Hello ,guys, i have a website,, and i would like to add
    upload vidoes on
    my
    > website i have tried but did not work can anyone please
    tell me how to
    embed my
    > videos in my website using dreamwever ?
    > thank so much
    >

  • How do i report fake apple email

    I keep receiving fake billing requests from apple. I check my account online without using the email, and it is OK. How do I report this to Apple? I cannot find an apple email address to report it to. Thanks.

    The emails appear to be coming from [email protected] which appears legitimate. It includes the large .mac logo. The words: "After a few clicks, just verify the information you entered is correct." seem to me to give it away, as well as the fact that it is NOT my .mac email id -- it's an alias email.
    There are also 84 other .mac addresses in the address line. I just thought Apple might like to know that someone is trying to get account information, and I wanted to forward it to them.

  • How to print report in Character mode using Oracle Developer 10g

    Dear,
    I migrate my forms and reports from Oracle Developer 6 to Oracle Developer reports 10g,
    We are using some character mode report for bill printing. But when i run these report through menu on Web i got error message like
    "REP-1920: Character mode runtime incompatible with DESFORMAT of PDF, HTML, HTMLCSS, SPREADSHEET or RTF"
    i don't want to change the character mode to any other mode because it effects the printing.
    so how can it possible to set the mode to character and view report on Web.
    pls. suggest me solution.

    You have to pass the PRT file name as value for the DESFORMAT and use mode= MODE=CHARACTER.
    E.g.
    http://<host name>:<port>/reports/rwservlet?desformat=dflt&mode=character&.....

  • How can I check my icloud emails using windows xp?

    My MacBook Pro crashed and I am currently using an old laptop on windows xp. When I go to enter online in Icloud.com my emails it does not allow me to see my emails unless I install icloud on my laptop. The problem is that when I follw the directions and the relevant link it sais that icloud is compatible only with windows 7 or 8. Does that practically means that I will not check my emails until my mac is back in life?

    Thank you for the answer
    I am trying to access my emails using my browser but when I enter my ID and password a message appears saying that I need to set up icloud first in my current device before I can make use (enter) icloud.com
    Then I pressed more info to find out how I can do that in a windows pc and I found out the following:
    ''To enable iCloud on your Windows PC (Windows 7 or 8 required), first step set up your iCloud account on your other devices or Mac, then install iCloud for Windows''
    Any suggestion?

  • How to maintain format in html email using the send email....

    Does anyone know how to maintain the format in a HTML email using the Send E-mail To Recipients From Recordset behavior?
    When text only is selected instead of HTML text on the Options tab the format of the input is maintained, but when HTML text is selected the email has no format. I have tried to use a replace \n with
    as I have done when hand coding PHP, BUT I am trying to learn to use ADDT. I also tried to use a Custom trigger without success.
    Help!

    Hi Dave,
    in my snippets folder I have this thing which I found on the old MX Kollection forums and which was suggested by the Interakt staff:
    //trigger SendEmail (write content)
    function Trigger_SendEmail(&$tNG) {
    ob_start();
    include("myDynamicContentFile.php");
    $mailcontent = ob_get_contents();
    ob_end_clean();
    $emailObj = new tNG_Email($tNG);
    $emailObj->setTo("[email protected]");
    $emailObj->setFrom("[email protected]");
    $emailObj->setSubject("A new User was added");
    $emailObj->setContent($mailcontent);
    $emailObj->setEncoding("UTF-8");
    $emailObj->setFormat("text");
    $emailObj->setImportance("Low");
    return $emailObj->Execute();
    //trigger SendEmail (write content)
    The only modification is the possibility to include a dynamic PHP file rather than some static text or a HTML file which will also render textarea contents on one line:
    ob_start();
    include("myDynamicContentFile.php");
    $mailcontent = ob_get_contents();
    ob_end_clean();
    That said, it should be possible to define all the "rendering" options in the external PHP file, what would mean to apply the nl2br function there, e.g.: nl2br($row_queryname['columnname'])
    What I´m not sue about is, if you will have to strip the external file´s head and body tags before it´s getting included -- however, please give this a try and tell us how it worked.
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • How to format and send html email using utl_smtp

    Hi,
    I need to send email in the html format from within the database using utl_smtp. I am really not interested in creating os level file using "set markup html on spool on" and sending that as an html attachment. Can someone please give a code?
    1. Output of a select needs to be emailed (for example : select empid, name from emp, salary)
    2. Certian cells for example salary < 4800 needs to be higlighted in Red color
    3. I need to send email which is having more than 32767 characters (I can not use varchar2 field)
    I have reffered to following url on asktom:
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1739411218448
    However it does not help.
    If someone has a sample code with any select from a table, it would be a great help.
    Regards
    Sudhanshu Bhandari

    There have been many very good threads on sending email using the UTL_SMTP on the forum including threads that deal with HTML formated mail.
    The basic process is to the same as with sending regular (non HTML) mail, but you add some additional headers to the mail message as well as additional formatting to the message body (e.g. HTML tags as needed).
    Specifically you need to add the two following headers:
    MIME-Version: 1.0
    Content-type: text/html

  • My iPod automatically purchases apps, how can i report the problems by using email, is there emails than i can use?

    I'm from Hong Kong and this is my first time using this.
    In the past few months, my iPod had been automatically purchasing apps/updates/points I had not notice it until this few days when my email showed that I had purchased apps for more than $100USD.
    So ireally want to report these problems to Apple about cancelling my purchases. I did once before and it suceesed. However, this time when i try to used iTunes to report the same problem about my cancelling purchases, it did not allow me and it came straight to Apple websites. I tried it thousand time, and it still doesn't work.
    Therefore, my question is than is there any other way that i can contact with Apple Store such as through e-mail.
    If any one knows what is the email or any other way, please reply.
    Damon

    Try going to Apple Support, and e-mailing them from there.  If you got hacked, they will probably be able to cancel the purchases.  They are great.

  • How to embed image in html when using JTextPane, HTMLEditorKit, JavaMail

    I am developing a specialized e-mail client that has to be able to send e-mail messages (in html format with images and attachments) that can be read by standard e-mail clients, and receive similar messages from standard e-mail clients.
    I have everything working except for embedding images.
    Images are to appear in the document mixed in with the text, but that's not what I mean by "embed". By "embed" I mean that the image itself is encoded within the html.
    Here's a bit of code to set the context.
    JTextPane bodyPane = new JTextPane();
    bodyPane.setEditorKit(htmlEditorKit);
    bodyPane.setTransferHandler(new DropHandler());
    bodyPane.setDocument(new HTMLDocument());
    In the DropHandler I have the following:
    HTMLDocument htmlDoc = (HTMLDocument) bodyPane.getDocument();
    HTMLEditorKit htmlKit = (HTMLEditorKit) bodyPane.getEditorKit();
    int caretPos = bodyPane.getCaretPosition();
    At this point get "filename", the full path to an image file that has been dropped onto bodyPane.
    String htmlString = "<img src=\"file:///" + filename.replace("\\","/") + "\">";
    htmlKit.insertHTML(htmlDoc, caretPos, htmlString, 0, 0, HTML.Tag.IMG);
    This works just fine. The image is displayed in the document at the point of insertion.
    However, the image itself is an external file. I need to send an e-mail with this image and could send the image file as an attachment, but I obviously can't assume that the recipient of the email is going to save the attachment into the proper location.
    What is the best way to do this?
    There is a technique for embedding the actual image in the html, using this syntax:
    String htmlString = "<a href=\"data:image/png;base64,---mimed png image here--\" alt=\"Red dot\"></a>";
    I can't get this to work in JTextPane, so perhaps it's not supported. Also, there may be limitations on the size of an image. And apparently Internet Explorer doesn't support this.
    From what I read, using a "content identifier", that is, "cid:" and adding the image as another part of the e-mail message is probably the thing to do. I haven't taken the time to explore this yet.
    Does JTextPane support cid? Is that a nonsense question? I suspect what I need to do when the message is being composed is use absolute paths to local files with the images, and then when assembling the e-mail, attach the files and rewrite the html to build in the cid linkage. Similarly, when reading a message with cid's, the thing to do is save the body parts as files and rewrite the cid to point to the actual file.
    I have seen others ask similar questions, one as recently as last December, and the reply was to refer to a Sun tutorial. But that tutorial doesn't address the full problem of 1) inserting an image into a document (instead of attaching an image to a component) and 2) sending it as an e-mail message.
    I have yet to see an example that shows the complete package.
    Am I right that the data option I mentioned is not going to work?
    Am I right that cid is the best approach, and do I understand how to use it?
    Is there something else?
    Thanks
    John

    Hi Rocky,
    Are you using the DC?
    if yes then you need to put the image inside the component folder. after that close the application
    & reopen. You will get the image.
    In case this does not work then try refreshing the portal through server side. Once the cache is cleared, it will be up to view.
    Also check the Activity list you have created. It should be added to the dtr properly or else it wont be reflected once reimported the configurations.
    Regards
    Chander Kararia

  • How to embed report in a custom template

    Hello friends,
    I have prepared a custom web template that I use in all of the web reports. How do I embed that in all of my web applications I prepare thru WAD?
    Thanks

    Hi Rahul,
    If you are BW 3.5 or above you can use the template web iten in your web template and assign it your template which you want should be embedded in each other template that you create.
    http://help.sap.com/saphelp_nw04/helpdata/en/62/661d0d486a1c4086ea1444c953a14b/content.htm
    Hope this helps...

  • HT4865 how can i report a phishing email with an icloud address?

    I got an email purporting to be from Apple requesting my email user name and password for my iCloud account.  The return address is an iCloud.com address.  Obviously, I know it was a phishing email, but is there some way to forward it to Apple so they can see if it actually did  originate from an iCloud address?

    Hi Gail,
    I’m answering your question because I’ve received so many spoof/spam messages lately to my email address(es) at me.com. I decided to find out how to report them.
    Here’s what I found out:
    Suspicious email messages can be forwarded to one of the following;
    [email protected]
    [email protected]
    Make sure to include the long header.
    Long headers can be displayed using the menubar (see below)
    Then either copy & paste the long header or simply forward the entire message.
    Example of long header from a suspicious email:
    “From:   Kikki Howard <[email protected]>
      Subject:   Kiss to you
      Date:   June 9, 2013 4:21:21 PM PDT
      To:   [email protected]
      Return-Path:   <[email protected]>
      Received:   from nk11p00mm-smtpin004.mac.com ([xx.xxx.xxx.xxx]) by ms04574.mac.com (Oracle Communications Messaging Server 7u4-26.01(7.0.4.26.0) 64bit (built Jul 13 2012)) with ESMTP id <[email protected]> for [email protected]; Sun, 09 Jun 2013 23:21:21 +0000 (GMT)
      Received:   from hakahakajkfbczj.googlemoogl.tk ([91.191.18.62]) by nk11p00mm-smtpin004.mac.com (Oracle Communications Messaging Server 7u4-27.05(7.0.4.27.4) 64bit (built Apr 23 2013)) with SMTP id <[email protected]> for [email protected] (ORCPT [email protected]); Sun, 09 Jun 2013 23:21:21 +0000 (GMT)
      Received:   from nwk-txn-msbadger0204.apple.com (nwk-txn-msbadger0204.apple.com. [xx.xxx.x.xx]) by xx.xxx.x.xx with HTTP; Mon, 10 Jun 2013 01:21:21 +0200
      Original-Recipient:   rfc822;[email protected]
      X-Proofpoint-Virus-Version:   vendor=fsecure engine=2.50.10432:5.10.8626,1.0.431,0.0.0000 definitions=2013-06-09_07:2013-06-08,2013-06-09,1970-01-01 signatures=0
      X-Proofpoint-Spam-Details:   rule=notspam policy=default score=0 spamscore=0 ipscore=0 suspectscore=14 phishscore=0 bulkscore=53 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=6.0.2-1305010000 definitions=main-1306090279
      Dkim-Signature:   v=1; a=rsa-sha256; c=simple/simple; d=hakahakajkfbczj.googlemoogl.tk; s=hakahakajkfbczj; h=from:subject:date:to:content-type; bh=tL+/wJmQOT1qfRAmSggBixqXyEIqt839Zb4SbOAPNOM=; b=…lggV4PzuGc/TkDUNdlU=;
      Message-Id:   <[email protected]>
      Mime-Version:   1.0 (Apple Message framework v936)
      Content-Type:   multipart/mixed; boundary="-4277442969-183115831-7904244676=:70228 ”
    You can find more info at:
    http://support.apple.com/kb/HT4933?viewlocale=en_US
    http://support.apple.com/kb/TS4019
    b/r’s, ab/simsboynton

  • How to print report in Charactor mode using Oracle Developer 10g

    Dear,
    I have converted my few reports from Oracle Developer forms 5 to Oracle Developer forms 10g,
    i am running these reports on Web, for that i have configour "rwserver" server.
    But when i run these report through menu on Web i got error message like
    "REP-1920: Character mode runtime incompatible with DESFORMAT of PDF, HTML, HTMLCSS, SPREADSHEET or RTF"
    i don't want to change the character mode to any other mode because it effects the printing.
    so how can it possible to set the mode to character and view report on Web.
    pls. suggest me solution.
    Thanks

    You have to pass the PRT file name as value for the DESFORMAT and use mode= MODE=CHARACTER.
    E.g.
    http://<host name>:<port>/reports/rwservlet?desformat=dflt&mode=character&.....

  • How to hide report tabs in webi using opendoc?

    How to hide a report tabs in webi while accessing that report using OpenDoc??
    Is there a way to see just the sReportName selected without show the other
    report tab in the bottom of the document??

    Hi,
    As Mention By SUBBARAO MUCHERLA Either create 2 Different Reports.
    Or
    You can do one thing .
    Add Complete Report in a Blank section .
    Section (v_sec_All ="All")
       --Part1   //Table
       --Part2   // Chart
       --Part3   //Chart 2
       --Part n
    Use this section(v_sec_All) in Linking Report Part .

Maybe you are looking for

  • Cannot DELETE rows from LOV on running...is it a bug ??

    One of the features I appreciated in the new version of JHeadstart is that we can now insert, modify and delete rows on LOV (even in the database). We have just to check on Lookup properties : Multi-row insert allowed Multi-row update allowed Multi-r

  • How can i delete these photos from my iphone?

    I had to do a dfu reset on my phone (without restoring a backup) to fix a data problem i was having, so i have spent the past week manually backing up specific app data that i can't live without (such as the songs i have written/recorded with garageb

  • Photoshop cc won't start

    on my new Windows 8 PC/ worked well until yesterday

  • How do i tranfer a text I wrote on the Ipad (using pages), to my comp ?

    must be simple, but can't figure it out....

  • CC signing out...

    How often should I have to sign in to creative cloud?  Right now I am having to sign in multiple times a day, which seems very excessive and annoying.  I followed someone else's advice of changing a file name extension in application settings or some