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.

Similar Messages

  • 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.

  • ICal Server sends invitations via external email but no RSVP

    I have set up a fresh install of Mavericks Server (10.9.3) running DNS and OD Services and now enabled iCal Server.
    I setup invitation of external users via an external email address and  invitations get sent and delivered via email just fine so I guess plus-addressing must be supported by the mailserver.
    However the invitations do not show the RSVP requests and do not automatically get picked up by Calendar.app.
    The server sits behind a NAT router and runs its own Split-DNS setup for the same local domain myserver.xyz.com that the router also redirects to the internal IP address of the server for external access to the iCal Server (so, FQDN is working for the server). The email account used for invitations is hosted on an external mailserver that runs on the same domain (mail.xyz.com).
    Did I miss anything in my setup?
    Thanks for any input.
    Pete

    Okay, got this figured out. Appears that the email server my client's company uses is terminating the connection when the Xserve tries to do anything. I setup a test Gmail account and used those settings instead and everything worked just fine.

  • Send mails with attachment to external email id

    Hi Folks,
    I have an ALV report, the output of which needs to be sent as an excel attachment to an external email id. Can I use SO_NEW_DOCUMENT_ATT_SEND_API1 in this case? What about the SAP Connect settings? Any documents/help files/code samples describing the same will be useful.
    /Sagar

    HI,
    If you want to send the ALV output as it is then you need send it to Spool and then convert it to a PDF then send it via email as an attachment,
    or else, if you want to send the data of the output you can send it by the final internal table i mean by using the final Internal table you can send the data by passing this final interanl table to <b>'SO_NEW_DOCUMENT_ATT_SEND_API1'</b>
    <u>example for your understanding:</u>
    DATA: OBJPACK   LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER LINE.
      DATA: OBJHEAD   LIKE SOLISTI1 OCCURS 1 WITH HEADER LINE.
      DATA: OBJBIN    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
      DATA: OBJTXT    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
      DATA: RECLIST   LIKE SOMLRECI1 OCCURS 5 WITH HEADER LINE.
      DATA: DOC_CHNG  LIKE SODOCCHGI1.
      DATA: TAB_LINES LIKE SY-TABIX.
      DATA L_NUM(3).
    Creation of the document to be sent
    File Name
      DOC_CHNG-OBJ_NAME = 'SENDFILE'.
    Mail Subject
      DOC_CHNG-OBJ_DESCR = 'Delivered Mail'.
    Mail Contents
      OBJTXT = 'Object text'.
      APPEND OBJTXT.
      DESCRIBE TABLE OBJTXT LINES TAB_LINES.
      READ TABLE OBJTXT INDEX TAB_LINES.
      DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
    Creation of the entry for the compressed document
      CLEAR OBJPACK-TRANSF_BIN.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM = 0.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM = TAB_LINES.
      OBJPACK-DOC_TYPE = 'RAW'.
      APPEND OBJPACK.
    Creation of the document attachment
      LOOP AT ITAB_DATA.
        CONCATENATE ITAB_DATA-PRODUCTOR
                    ITAB_DATA-VBELN
                    ITAB_DATA-POSNR
                    ITAB_DATA-MATNR INTO OBJBIN.
        APPEND OBJBIN.
      ENDLOOP.
      DESCRIBE TABLE OBJBIN LINES TAB_LINES.
      OBJHEAD = 'ORDERS'.
      APPEND OBJHEAD.
    Creation of the entry for the compressed attachment
      OBJPACK-TRANSF_BIN = 'X'.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM   = 1.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM   = TAB_LINES.
      OBJPACK-DOC_TYPE   = 'TXT'.
      OBJPACK-OBJ_NAME   = 'WEBSITE'.
      OBJPACK-OBJ_DESCR  = 'ORDERS.TXT'.
      OBJPACK-DOC_SIZE   = TAB_LINES * 255.
      APPEND OBJPACK.
    Completing the recipient list
    target recipent
      clear RECLIST.
      RECLIST-RECEIVER = '[email protected]'.
      RECLIST-EXPRESS  = 'X'.
      RECLIST-REC_TYPE = 'U'.
      APPEND RECLIST.
    copy recipents
      clear RECLIST.
      RECLIST-RECEIVER = '[email protected]'.
      RECLIST-EXPRESS  = 'X'.
      RECLIST-REC_TYPE = 'U'.
      RECLIST-COPY     = 'X'.
      APPEND RECLIST.
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           EXPORTING
                DOCUMENT_DATA              = DOC_CHNG
           TABLES
                PACKING_LIST               = OBJPACK
                OBJECT_HEADER              = OBJHEAD
                CONTENTS_BIN               = OBJBIN
                CONTENTS_TXT               = OBJTXT
                RECEIVERS                  = RECLIST
           EXCEPTIONS
                TOO_MANY_RECEIVERS         = 1
                DOCUMENT_NOT_SENT          = 2
                OPERATION_NO_AUTHORIZATION = 4
                OTHERS                     = 99.
    ENDFORM.                    " SEND_MAIL

  • 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

  • Send report output(alv display) as email to end user

    I have developed a report the output of which has to be sent to the end user if he enters his email id in selection screen. The out put is in alv form. Pls can anyone tell me how to send this displayed output as an email attachment using function module SO_NEW_DOCUMENT_ATT_SEND_API1 . I am wondering How this displayed output can be passed as a parameter to this function module.

    Thanks Sham..
    I am able to send HTML email following above link.
    The problem i am facing is,When i am deploying the code through crxde.Code is working fine.
    But using maven deploy..Bundle get activated ..But at line:
    messageGateway = this.messageGatewayService.getGateway(HtmlEmail.class);
    ,it gives null Pointer exception.
    Any pointer,why its not working from maven deployment.
    Regards
    Deepika

  • Sending a default HTML page when email is blank

    How can I send a default HTML contents if HTML portion is blank in the email using JSP?
    I'm writing a JSP file where it emails To, from and with some HTML contents.

    If you are sending the email, then you are defining the contents, so if you want to send a default value, you have to check that what you are sending as content is blank or not and make the substitution when you construct the mail message. Why would there need to be some automate thing for that?

  • 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

  • HTML file send as an attachment via an email adapter

    Hi,
    I need to implement an scenario File -> XI -> Email (html attachment) . To send html as attachment , do i need to go for XSLT mapping ? ...please share your ideas if any ..
    Regards
    Vinay P.

    Hi Vinay,
    Have you seen this blog?
    http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=%28J2EE3414900%29ID1832422350DB01827388014243714513End?blog=/pub/wlg/6321
    Regards
    Suraj

  • How to configure business workplace via external email

    Hi all,
        Please help me,  Iam in learning stage,how to configure outlook setting in business work place.If you send the any documentation for mail configuration  that wil be great,this is my mail id ([email protected]).

    Hello, Cornelius:
    Thank You, for Your kindly responce, here are the info on my eMac:
    eMac Model No: A1002, EMC No: 1903 DHHS Code: G8
    Mac OS X Ver. 10.4 , processor 700 Mhz. Power PC G4 ( 2.1 )
    Boot ROM ver: 4.4.2f1 serial No. G8224C5JLRX
    My new Apple USB Modem, is a new one minisized, recently I bought in an Apple Store in Tucson Arizona, with no software or drives, I bought because we CaNot put to work neither with the built-in Ethernet, not with the Internal Dial-up Serial Modem either, Do Not Work.
    This is others info I get, on Contents: Software Extension, on Network:
    Built-in Ethernet, Type: Ethernet, Hardware: Ethernet, BSD Device Name: en0
    IPv4: Config. method: DHCI , IPv6: Config. Method: Automatic.
    Proxies: Proxy Config. method: Manual, ExcludeSimpleHostname: 0
    FTP Passive Mode: YES, Auto Discovery Enabled: NO.
    Internal Modem:
    Type: PPP ( PPP Serial ), Hardware: Modem, BSP Device Name: Modem.
    IPv4: Config. Method: PPP , IPv6: Config. Meyhod: Automatic.
    Proxies: Proxy Config. Method: Manual, ExcludeSimplrHostname: 0
    FTP Passive: YES, Auto Discovery Enable: NO
    Dear Cornelius, any idea ?
    May be I need some drivers ?
    Thank You Again, any help will be very appressiated: electson

  • When I atempt to send a web site via an email from FF, the system keeps opening one new mozalla screen after another. Nothing will stop this but logging off. I have to bookmark everything and then put it in an email. Your help is appreciated.

    If I attempt to send a link to someone from a site I am visiting, ff starts opening one new start window after another. So fast i can't get it stopped. Even going into taskmaster which I sometimes have to try 3 or 4 times, it is impossible to get them all stopped they just keep multiplying. Only logging off or a restart will fix the problem.
    The same think happens if I use a "send picture to". I don't know what else to do. I have run all the diagnostics I have. Checked all the drives, etc. Check all the ff settings. Nothing shows.

    http://support.mozilla.com/en-US/kb/Managing+file+types
    Don't set Firefox for '''mailto'''. <br />
    http://support.mozilla.com/en-US/kb/Changing+the+e-mail+program+used+by+Firefox

  • I am trying to get my daughter's iPod to send and receive messages via an email account.

    Everytime I try to add her email to the iPod it says "error, email already in use". It was working,but after IOS 6 update everything is a mess.
    I restored the iPod, but still getting the same issue. HELP

    I'm assuming this is the iPod Touch, since that is the only iPod that accesses the iTunes store. I would recommend you post this here https://discussions.apple.com/community/ipod/ipod_touch

  • Send Vendor Balance confirmations report output (F.18) to External email ID

    Dear Friends.
    I have following requirement
    Our Client requirement is to send Vendor Balance confirmations report output (Tcode F.18) to external email ID of vendor.
    So please guide accordingly.
    I have done BASIS Settings for SMTP (Tcode SCOT, RZ10) and Through SAP office using BASIS consultant and i can able to send sample test mail to external email ID through SAP Office (tcode SO00)
    I will be thankful if anyone gives me exact solution.
    Thanks & Regards
    Suyog

    Hi,
    You can craete Background Job and send Mail.
    e.g.
    Goto->SM36->JOBWIZARD ( Create the Job and specify the Spool List Recipients ).
    After Creating the job.
    Again SM36->Start Condition ( You can create here when to send the mail ).
    And Release it.
    Be sure that your BASIS guy has done the required settings for Outgoing Mail.
    Please check in SCOT.
    Affable
    Arbind
    Edited by: Arbind Prasad on Jan 23, 2010 3:07 PM

  • Send Reports in an Email

    I was wondering if any of you have been challenged to automatically send reports from CRMOD via Email. If you have and you were successful how did you guys do it.
    I hope this feature is built in future versions

    Smjohn,
    You can't automatically run reports to send via email but why not setup a dashboard as a custom web tab for these people so they can just click on the tab to view the report?
    cheers
    Alex

  • Send PO vía external email using contact person information

    Hi,
    I am trying to send the PO to the vendor via external email. The problem is that the customer is already using field email in vendor master data for other purposes.
    The requierement is to use contact person´s email or another business partner´s email to send the vendor the purchase order when it is save.
    I´ve done all customizing on output determination.
    Something I might be missing? Can this be done?
    Thank you

    Hi,
    I have been doing some tests and the po determines the business partner - contact person in tab message, also when I save the PO status for the external email is set on green. If I go to transactions SOST is there when the email never is send.
    Why is this happening? I have done test with the email on vendor master and the po is sent, therefore is not a problem with the server sending emails.
    Is there a way I can get the po sent? Please suggest.
    Thank in advance
    Edited by: Rafael Arrese on Mar 1, 2012 5:49 PM

Maybe you are looking for

  • Spotlight and Mail

    Spotlight refuses to index my inbox or any archives after installing Leopard. This was not a problem before with Tiger. I noticed several posts on this but all unanswered. Does anyone have the same problem? Any solution? My mail search is pretty much

  • Replace one swf movie with another

    I have a flash movie on my web page and I have made some of the text inside the movie into buttons. The movie only takes up a portion of the page. I would like to replace the movie with another movie when somebody clicks the button. I'm sorry if this

  • Quarter bridge for 9237

    How do I select quarter bridge completion settings for 9237 with 9944? Message Edited by Frederico Barros on 09-28-2007 09:02 AM

  • Best car mount for iPhone WITH case

    ive tried car mounts in the past and some worked fine...until I got a case for my iphone. lots of mounts have custom fitting so that it will fit the naked iphone just fine, but i need one that works with my case on it. so i guess just an adjustable o

  • MIRO-G/L account - profit center

    Hello all, we are on ECC 6.0 and during MIRO when posting to a material and simultaneously to a G/L account (Direct Posting to G/L Accounts being activated) when the Profit Center field is populated, once we press enter the Profit Center value just d