Email bursting send report as HTML in email body

Hello,
I have Oracle BI Publisher 10.1.3.4.1 (build# 1101) version installed as part of Oracle Business Inteligence.
I have question about email bursting. I created simple report and I am bursting it via email. But I would like to send report in HTML as part of email body and not as attachment. I read that it is possible in other versions of BIP (as part of EBS) with using of bursting configuration file. But I can not use this file with my version of BIP, I can configure bursting only vie SQL query.
Is there any solution?
Thank you

My bursting SQL query:
SELECT DISTINCT
ip.APPL_ID KEY,
'11F_Search_Prospect_Email' TEMPLATE,
'RTF' template_format,
'en-US' locale,
'HTML' output_format,
'EMAIL' DEL_CHANNEL,
ip.email PARAMETER1,
'[email protected]' PARAMETER3,
'Welcome' PARAMETER4,
'true' PARAMETER6
FROM ugrad.inquiry_prospect ip,
ugrad.correspondence f,
ugrad.address e,
ugrad.f_lookup fl
WHERE ip.appl_id = f.appl_id
AND ip.APPL_ID = e.APPL_ID
AND fl.TYPE_CODE='C'
AND ip.record_stage = 'Prospect'
AND e.COUNTRY_CODE=fl.code
AND e.table_name = 'INQUIRY_PROSPECT'
AND e.address_type =
NVL ((SELECT gg.address_type
FROM ugradadm.address gg
WHERE gg.address_type =
DECODE (f.mailpref,
'Home', 'HOME',
'Best', 'LOCAL',
'HOME'
AND gg.table_name = 'INQUIRY_PROSPECT'
AND gg.APPL_ID = ip.appl_id
AND((gg.address_type='LOCAL' AND NVL(gg.address_expir_date,sysdate)>sysdate)
OR gg.address_type='HOME')),
'HOME'
AND f.batchid = :Batch_ID
This report when bursted sends an email with the layout template as html body.
The EMAIL configuration is set with a server Port number and its host address.

Similar Messages

  • Tho bl Email in iPhone to the Reserve email and i can not Reception any email he go to the email and send i can see my emails in the Hotmail website what i can do

    Tho bl Email in iPhone to the Reserve email and i can not Reception any email he go to the email and send i can see my emails in the Hotmail website what i can do i need my email in my iphone i try to go apple>support>apple id>name and email> and i can not i using iPhone 4s in 6.0

    Try contacting Support in your country, after confirming your id and that it's your account they should be able to reset its password.
    Contacting Apple about account security : http://support.apple.com/en-us/HT5699
    If your country isn't on that page then try this form and explain and see what they reply with : https://ssl.apple.com/emea/support/itunes/contact.html
    When they've done that update the primary email address on the account to be an account that you have access to e.g. by tapping on it in Settings > iTunes & App Store and logging into it, via the Store > View Account menu option on your computer's iTunes, or via the 'manage your apple id' button on http://appleid.apple.com

  • HT1277 my email is sending me duplicates of each email . How do I fix?

    my email is sending me duplicates of each email . How do I fix?

    Hello,
    Not certain, but this can fix myriad Mail problems...
    Safe Boot from the HD, (holding Shift key down at bootup),  it will try to repair your Disk Directory while the spinning radian is happening, so let it go, run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, then move this folder & file to the Desktop.
    Move this Folder to the Desktop...
    /Users/YourUserName/Library/Caches/Mail/
    Move this file to the Desktop...
    /Users/YourUserName/Library/Mail/Envelope Index
    Reboot.
    If that doesn't do it and you can afford to redo all your Rules, try these & reboot...
    /Users/YourUserName/Library/Mail/MessageRules.plist
    /Users/YourUserName/Library/Mail/MessageRules.plist.backup

  • Email sending: "sending report output directly to the body of the email"

    Hi
         I got one requirement.this is the enhancement to already exisitng report.when user clicks on send email check box,report has to be display and this report output has to be send to email of the particular vendor. it has be seen directly in the body of the mail.not as attachement.Report output is in ALV format.Data is stored in internal table t_data.can anyone suggest what is the procedure for this.

    Hi i have tried the same thing and it works very fine,
    i will share my code, you just follow exactly, hopefully you can solve the issue..
    you refer clearly the body of the mail,
    it should solve your issue/
    FORM send_email .
        DATA  lt_message     TYPE            bcsy_text.
        DATA  lv_mail_title  TYPE            so_obj_des.
        DATA  document       TYPE REF TO     cl_document_bcs.
        DATA  recipient      TYPE REF TO     if_recipient_bcs.
        DATA  send_request   TYPE REF TO     cl_bcs.
        DATA  sent_to_all    TYPE            os_boolean.
        DATA  bcs_execption  TYPE REF TO     cx_bcs.
        DATA  wf_string(200)  TYPE            c.
    *    DATA  wf_string      TYPE            string.
        DATA  doc_execption  TYPE REF TO     cx_document_bcs.
        DATA lv_status(20)    TYPE c.
        DATA lv_count_email TYPE i.
        DATA lv_temp_stepcount TYPE c.
        LOOP AT wt_email INTO wa_email.
          TRY.
              CLEAR send_request.
              send_request = cl_bcs=>create_persistent( ).
    *Create Title
              lv_mail_title = 'Report Title'.
    *Create Message(EMAIL Body)
              REFRESH lt_message.
              APPEND '<p><b>Dear Sir/Madam,</b></p>' TO lt_message.
              APPEND '<p>The following report shows the status of </p>' TO lt_message.
              APPEND '<br>' TO lt_message.
              APPEND '<table border= "1" color = 2>' TO lt_message.
              CLEAR wf_string.
              CONCATENATE '<th><tr>'
                          '<td>Vendor  </td>'
                          '<td>Vendor Name</td>'
                          '<td>Coloun 1</td>'
                          '<td>Coloum 2</td>'
                          '</tr></th>' INTO wf_string.
              APPEND wf_string TO lt_message.
              LOOP AT wt_itbl INTO wa_itbl WHERE vendor = wa_email-vendor. "-> Define your Condition here wt_email( should contains vendor and its respective email id)
               CLEAR wf_string.
                CONCATENATE '<tr><td>' wa_itbl-vendor '</td>' INTO wf_string.
                APPEND wf_string TO lt_message.
                CONCATENATE '<td>' wa_itbl-Vendor_name '</td>' INTO wf_string.
                APPEND wf_string TO lt_message.
                CONCATENATE '<td>' wa_itbl-COL2 '</td></tr>' INTO wf_string.
                APPEND wf_string TO lt_message.
                CONCATENATE '<td>' wa_itbl-COL3 '</td></tr>' INTO wf_string.
                APPEND wf_string TO lt_message.
              ENDLOOP.
              APPEND '</table>' TO lt_message.
              APPEND '<br>' TO lt_message.
              APPEND '<p><b>Thank You</b></p>' TO lt_message.
    *Create Document
              CLEAR  document.
              TRY.
                  CALL METHOD cl_document_bcs=>create_from_text
                    EXPORTING
                      i_text         = lt_message
                      i_documenttype = 'HTM'
                      i_subject      = lv_mail_title
                    RECEIVING
                      result         = document.
                CATCH cx_document_bcs INTO doc_execption.
              ENDTRY.
    *Add document to email
              send_request->set_document( document ).
    *Add recipients to send request
              IF wa_email-smtp_addr IS NOT INITIAL.
                recipient = cl_cam_address_bcs=>create_internet_address(
                          i_address_string = wa_email-smtp_addr ).
                send_request->add_recipient( i_recipient = recipient ).
              ENDIF.
    *Send Email
              CALL METHOD send_request->send
                RECEIVING
                  result = sent_to_all.
              COMMIT WORK.
              IF sent_to_all EQ 'X'.
                lv_count_email = lv_count_email + 1.
              ENDIF.
            CATCH cx_bcs INTO bcs_execption.
          ENDTRY.
        ENDLOOP.
        IF sent_to_all = 'X'.
          SKIP 2.
          FORMAT COLOR COL_GROUP INTENSIFIED ON.
          ULINE /(10).
          WRITE: / 'Remark : '.
          ULINE /(10).
          FORMAT RESET.
          WRITE: /  'Email Message Sent Succesfully'.
          RETURN.
        ENDIF.
      ENDFORM.

  • Blank message body when sending or receiving HTML formated emails Exchange 2010

    I Have just installed Exchange Server 2010 over the weekend on a customers system.  All clients using either Outlook 2003 or 2007 are unable to see any text in the body of emails that are formatted in HTML.  If they receive an email formatted as HTML there is no body text, if they send an Plain Text formatted email the recipient sees the text in the body.  This problem presents across all Exchange users and affects all HTML formatted emails sent or received since transitioning from Exchange 2007 to 2010.  Plain Text and Rich Text email present with no issues. If we import old email via a pst they afre able to see all email text both HTML and plain text. when we access the clients email account via OWA all emails work but then if we go into outlook 2003/2007 and click the email it removes the body text from the email in both the client and OWA have tried Outlook connection issues with Exchange 2010 mailboxes due to RPC encryption requirement
     http://support.microsoft.com/default.aspx/kb/2006508 and it made no difference at all.
    Thanks
    Update: Have just tested further and all pc seem to work ok with either 2003 or outlook 2007 on.  The problem only seems to be happening on the remothe desktop services server which has outlook 2007 ( have also tried outlook 2003 with same results)

    We have just migrated to Exchange 2010 and have had some blank emails come in to our system.  We think we have a reason and fix for
    it. Hopefully this helps someone else…
    Staffs have their own private mailbox (as you would expect) but also share common mailboxes like "Support" and "Info". When an email came
    into the inbox on a shared mailbox, it might be blank. Plain text emails seemed to be okay. 
    We found that when an email came in, it was readable for about two or three seconds (you need to be setup to send a test and check the inbox quickly - we used Outlook 2007 with the reading pane turned on) and then it blanked out!. We checked the incoming
    email by using the arrow keys to select it and then select the email below the new email, if you go back and forth between them you can see the good new email suddenly goes blank.
    So send another test, but this time make sure the email is set to “Plain Text”. Our email turned up fine, two seconds latter
    it had a NOD32 signature appended to the end of it saying that it had been scanned by NOD32 (you may have seen this kind of note appended to the end of emails before).
    What appeared to be happening is that one or more users sitting at their desks in Outlook had different settings configured in NOD32 (they
    were supposed to be using the server based profile that we control). We thought we had the server doing the AV work, but several of our client PCs had NOD32 enabled to integrate with Outlook. New items received in the shared Inbox’s were being scanned
    by the client PCs and having a signature appended which was mucking up the HTML format of the email and Exchange 2010 blanked them out.
    Make sure your AV products aren’t corrupting the email formats causing them to be displayed blank. Try tests using OWA only and don't
    access the mailbox using Outlook.
    Thanks.

  • Send report in HTML format not in MHTML

    Hi all,
    I need to send report in email in HTML format not in MHTML format.
    Kindly help me.
    Thanks

    Hello,
    As far as I know, we cannot change the rsreportserver.config file to achieve this effect.
    In SSRS, the HTML rendering extension renders a report in HTML format. The HTML rendering extension is the default rendering extension for reports that are previewed in Report Builder and viewed in a browser, including when run in Report Manager.
    There is an article about Rendering to HTML, you can refer to it.
    http://technet.microsoft.com/en-us/library/dd255269.aspx
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Sending Report as HTML via external email.

    I have a report on Apex 4.0.2 and was wondering if it is possible to get the report values as HTML so that I can send them using an email function I have in separate packages?
    I just send the username, recipients and the HTML to this function and it generates the email along with the ones I generate from all other screens.

    Just to clarify, I have a process that is called on submit.
    At the moment it emails fine with data from the apex page, but is there way to include a html version of the page without creating it myself?
    the function is called like this:
    Email(pEmailName => lvEmailName,
    pSubject => lvSubject,
    pTextMsg => lvText,
    pHTMLMsg => lvHtml);
    and I want to pass the data as html to pHTMLMsg.

  • PT61 - send Report Time Statement via email

    I have a question about Time Statement Report.
    Is there any change for send this report from PT61 to each person via email or is the only solution to create own report?
    Thank you,
    Mirko

    Hello Mirko;
    As far as I know there is no standard functionality for that.
    But you can read the results from cluster B2 and print it on smartform. And you can send this smartform via mail.
    Of course it will be a development and you will need assistance of an abaper.
    Regards,
    Okan

  • Is it possible to send report results as an email attachment in BW3.x ?

    Hi Friends,
    I have a requirement wherein I need to automate the process to run the report via Reporting Agent..and also to send the results as an e-mail attachment.
    Is it possible to do so in BW 3.x..?
    I was trying to see if I can run the report using the Reporting Agent Settings, using the Web Templates tab. However I did not see any follo-up actions available for Web templates, but found so for the Exceptions.
    Can you please help and let us know if there is a way to do that and what options are available..?
    Thank You
    Sri lz70d7

    3.1 version.
    try to follwong links
    loginto rsa1
    u will see tab of REPORTING AGENT, press that tab.
    u need to schedule the jobs as u schedule process chains,
    select ur query, make the time arrangement, select output format,
    output type i.e.
    http://help.sap.com/saphelp_nw04/helpdata/en/45/67bd3cad649f5ce10000000a114084/content.htm
    Reporting Agent Configuration
    After the two steps configuration
    1 - configure the agent settings for web templates
    2 - scheduling package which is a reporting agent scheduler
    In RSRAJ Starts a Reporting Agent Job
    SAP show-mw the folow information...
    All Reporting Agent settings processed
    My Questions is ---Where the system save the query data ????
    In RSRAM Reporting Agent Monitor in Schedule --> Execution Target --> i have information of aplcation Server.

  • Scheduling emails to send report

    Hi
    Im using Apex 3.2 with 10g.
    Currently I send a weekly report from my application by clicking on a button manually
    That is I have a process which run when a button is clicked and send out the mail using Apex_mail.
    Someone has to go the application and click the button to send out the report.
    What I want to do is schedule it, so that report goes to particualr list of users every monday automatically
    How can I achive this?
    Thanks in Advance
    Archana
    Edited by: Agowda on Jun 14, 2011 12:21 AM

    To build report and save to blob: Re: how to save pdf in APEX 3.0
    Then you need to do as prior poster suggested, create a dbms_scheduler job to send an e-mail with the clob as an attachment..
    Thank you,
    Tony Miller
    Webster, TX
    Follow your passion; the rest will take care of itself.
    JMS
    If this question is answered, please mark the thread as closed and assign points where earned..

  • Email Bursting problem when there is not email - Urgent solution requried

    Hi,
    I am using the bursting API to send the invoices to multiple mail a/c for each invoice.
    If the email id not exist on the .out file(It has different invoices with different customers), If takes the previous email id from the different invoice, Which is not correct.
    If it is the case then the program will send the invoice to the customer which even not belog to the customer.
    Thanks & Regards,
    Rakesh Patel

    Rakesh
    I also faced this issue. I think it's a bug and Oracle Development will fix this.
    I think its the issue with Bursting API is not able to clear Buffer/variable holding this values.
    I have used another approach to fix this ,did not get time to raise TAR.
    There are various workarounds to fix it based on the requirement of client
    If Customer's email address is stored as blank in Customer Master then there is no point in sending them automatic mail ,in this case this has to be sent to Manually by client ( i mean this invoice mail should go to Admin person who has generated Invoice and that person in turn will take care to sent it to actual customer either by email or fax or manually by post)
    -- So in summary solution here is ,if Customer's email address is null then send it to person who has generated the invoice ( use his email ID).
    Functional folks have to play role here to convience client rgarding this
    In my case client agreed on it and subsequently I followed below approach.
    I was generating/extracting Data by XML publisher's Data Template [i was not using Oracle Report(RDF)],so in Data Template itself i handled it in SQL by NVL function in a such way that whenever email_address is blank then use originator email Address.
    If you are using Oracle reports then you can use same approach or handle it through formula column.
    Hope it will be useful to you at the certain extent.You can use this untill Oracle released the patch to fix this.
    With Best Regards
    Darshan Bhavsar

  • Emails I send show up as new emails

    Hello,
    I have the BlackBerry Pearl 8120, and whenever I send an email, it pops up on my phone as if it's a new email for me. Obviously, this means I am a ton of emails on my Bberry that I don't want to read (because I wrote them)!
    Does this sound familiar to anyone here? And if so, how did you fix the problem?
    Thank you,
    jessica

    https://bis.eu.blackberry.com/html?brand=orangeuk
    this is the link you need to log to
    Click on KUDOS to appreciate our efforts and mark the thread RESOLVED if your issue is resolved.

  • Does anyone have problems attaching a photo in an email or sending a picture in an email?

    I am having problems sending photos in email messages. Could my settings be off?

    Both i and my friend have the same cursor jump problem. I have put up with it a couple of years on pc icloud safari, ipad and iphone.  My friend gave up and switched to google and gmail.  Im sure many folks have done the same.

  • I forgot my security questions and the reset email wont send to either of my emails which are verified. Please help .

    The other day i was trying to purchase a song from itunes. I had recently gotten a new ipod and itunes asked me to enter my security questions before i could buy the song. I had forgotten them and went to the apple support website and tried several times to send a security reset email to myself. The email still wont send and i know it has already been a verified email. Dx please help ;'(

    DId you use this page to reset stuff?
    https://iforgot.apple.com/cgi-bin/WebObjects/DSiForgot.woa/wa/iforgot
    IF no avail, you may wann raise a ticket via this:
    https://expresslane.apple.com/GetproductgroupList.do?PRKEYS=PF4

  • Mail issue; receiving email I send thru webbased on apple email

    I have an interesting problem. Normally my mail comes thru on Apple Mail. However, when I am at work, I check my mail thru the web based site of my internet provider. Recently, my internet provider changed how they do mail. They now have a deal with google Gmail.
    When I compose mail thru my the web based system it shows up on my Apple Mail Inbox. Obviously, that's a nuisance and I'd like to get rid of it. So, I call Tech support for my internet provider. They told me, "well Apple does that and mostly learn to live with it."
    I can't believe that's the end of it. Can anyone help me?
    Thank you.

    This is normal for Gmail -- it is Gmail, and not Apple Mail that is causing the sent message to show up in the Inbox, limited I think to when you are accessing Gmail as POP and not as IMAP. But I would have top test that.
    How are you accessing your Gmail from Mail -- POP or IMAP. Since only IMAP would let you see the Sent folder on the Gmail server, then with POP, Gmail is making the sent message available on your email client, in the Inbox.
    Ernie

Maybe you are looking for

  • Ipod not recognised in itunes or my computer - and no 'devices' option

    I am in Windows XP, 'My Computer' doesn't recognise my iPod and neither does itunes. Please can someone help!?! I have 60Gb colour screen ipod (but not video ipod) and has worked for the last year approx since I had it, always used to update automati

  • Reading Contents of File and displaying output

    I'm trying to read the contents of a file, then loop through the contents, perform some formatting, and display the output. Should I read the file into an array? What is the best approach? Thanks in advance.

  • New Display Resolution

    I can't believe I'm asking this but since the 8600MT supports the higher resolution option, is that only possible through applications? I dont even see it as an option under the display tab. Also does anyone know of a gpu clock frequency display prog

  • Regarding output in a report

    The report five tables of PS modules.PROJ,PRPS,HRP1001 ZPRACTICE and ZLEAVE i have the selextion screen with project,STart date and end date and practice. I want to get the report o/p in such a mannner that 1.Based on Project allocated with these dat

  • Opportunity Home BO does not allow searching

    I have use the "Opportunity Home" object and call the OpportunityHomeSearchVirtualQuery method to perform the search operation. However, I get the exception that "searching is not allowed" returned from the Siebel system. Should I activate the search