Send report as email thru bursting

I am trying to send report by email thru bursting. My query follows:
SELECT CLIENT_ID AS KEY
,'afsrep' AS TEMPLATE
,'RTF' AS TEMPLATE_FORMAT
,'en-US' AS LOCALE
,'EXCEL' AS OUTPUT_FORMAT
,'FILE' AS DEL_CHANNEL
'[email protected]' PARAMETER1, '[email protected]' PARAMETER2, '[email protected]' PARAMETER3, 'TEST' PARAMETER4,
'BODY TESET' PARAMETER5, 'true' PARAMETER6, '[email protected]' PARAMETER7
from Client_contacts
When we burst the report is opening in the desktop but NOT SENDING EMAIL.
Can someone help me.
Edited by: user10711255 on Jun 11, 2009 3:36 AM

have you configured the address for the email server you will be snding through. its in the delivery setup in administration.

Similar Messages

  • 530 authentication required, when send report as email thru Discoverer View

    Hi,
    I got the "530 authentication required" error message when I tried to use the "Send as Email" function to attach a report in the Discoverer Viewer.
    Could anyone shade some light on this error?
    Thanks
    Kevin C

    Hi,
    You need to talk with your "system", it seems like you got to a closed port.
    Also it may be that a firewall is blocking you.
    Tamir

  • Send reports by eMail without .BIAR

    Hi,
    Can i send reports by email for deployment on another CMC without using .BIAR file? The reports are created in Webi Rich client. The universe and associated DB already exist at the destination location. I am relatively new to BO.
    Thanks...

    Technicaly - yes you can, but in that destination environment you will have to open thise reports using Webi Rich Client, re-point them to the proper universes and then export them to repository.
    The Proper , Recomended and Supported method is to use Life Cycle Manager or BIAR file funxctionality for this operation.

  • SENDING REPORTS O/P THRU E-MAIL: ATTACHMENT NAME NOT VISIBLE

    Hi,
    I have created a report program which will convert report o/p to excel sheet and send the attachment to the mail id provided in the selection screen. Here in this case the mail is going perfectly, and the attachment also but the problem is the attachment name is not visble.
    From the program it is expected that the attachment name is delivery.xls. but in the mail it is showing only .xls...
    here is the code I used. Please correct me...
    REPORT  ZRAM.
    TABLES: LIPS.
    DATA: BEGIN OF IT_LIPS OCCURS 0,
            VBELN LIKE LIPS-VBELN,
            POSNR LIKE LIPS-POSNR,
            MATNR LIKE LIPS-MATNR,
            WERKS LIKE LIPS-WERKS,
          END OF IT_LIPS.
    DATA:   it_message TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
                    WITH HEADER LINE.
    DATA:   it_attach TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
                    WITH HEADER LINE.
    DATA:   t_packing_list LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
            t_contents LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            t_receivers LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
            t_attachment LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            t_object_header LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            w_cnt TYPE i,
            w_sent_all(1) TYPE c,
            w_doc_data LIKE sodocchgi1,
            gd_error    TYPE sy-subrc,
            gd_reciever TYPE sy-subrc.
    SELECT-OPTIONS: S_VBELN FOR LIPS-VBELN.
    PARAMETERS : P_EMAIL TYPE somlreci1-receiver lower case DEFAULT
    '[email protected]'.
    SELECT VBELN POSNR MATNR WERKS
           FROM LIPS INTO TABLE IT_LIPS
           WHERE VBELN IN S_VBELN.
    PERFORM build_xls_data_table.
    perform populate_email_message_body.
    Send file by email as .xls speadsheet
      PERFORM send_file_as_email_attachment
                                   tables it_message
                                          it_attach
                                    using p_email
                                          'Delivery details'
                                          'XLS'
                                          'delivery'
                                 changing gd_error
                                          gd_reciever.
      Instructs mail send program for SAPCONNECT to send email(rsconn01)
      PERFORM initiate_mail_execute_program.
    *&      Form  BUILD_XLS_DATA_TABLE
          Build data table for .xls document
    FORM build_xls_data_table.
    CONSTANTS: con_cret TYPE x VALUE '0D',  "OK for non Unicode
                con_tab TYPE x VALUE '09'.   "OK for non Unicode
    *If you have Unicode check active in program attributes thnen you will
    *need to declare constants as follows
    class cl_abap_char_utilities definition load.
    constants:
        con_tab  type c value cl_abap_char_utilities=>HORIZONTAL_TAB,
        con_cret type c value cl_abap_char_utilities=>CR_LF.
      CONCATENATE 'VBELN' 'POSNR' 'MATNR' 'WERKS'
             INTO it_attach SEPARATED BY con_tab.
      CONCATENATE con_cret it_attach  INTO it_attach.
      APPEND  it_attach.
      LOOP AT it_LIPS.
        CONCATENATE IT_LIPS-VBELN IT_LIPS-POSNR
                    IT_LIPS-MATNR IT_LIPS-WERKS
               INTO it_attach SEPARATED BY con_tab.
        CONCATENATE con_cret it_attach  INTO it_attach.
        APPEND  it_attach.
      ENDLOOP.
    ENDFORM.                    " BUILD_XLS_DATA_TABLE
    *&      Form  SEND_FILE_AS_EMAIL_ATTACHMENT
          Send email
    FORM send_file_as_email_attachment tables pit_message
                                              pit_attach
                                        using p_email
                                              p_mtitle
                                              p_format
                                              p_filename
                                              p_attdescription
                                              p_sender_address
                                              p_sender_addres_type
                                     changing p_error
                                              p_reciever.
      DATA: ld_error    TYPE sy-subrc,
            ld_reciever TYPE sy-subrc,
            ld_mtitle LIKE sodocchgi1-obj_descr,
            ld_email LIKE  somlreci1-receiver,
            ld_format TYPE  so_obj_tp ,
            ld_attdescription TYPE  so_obj_nam ,
            ld_attfilename TYPE  so_obj_des ,
            ld_sender_address LIKE  soextreci1-receiver,
            ld_sender_address_type LIKE  soextreci1-adr_typ,
            ld_receiver LIKE  sy-subrc.
      ld_email   = p_email.
      ld_mtitle = p_mtitle.
      ld_format              = p_format.
      ld_attdescription      = p_attdescription.
      ld_attfilename         = p_filename.
      ld_sender_address      = p_sender_address.
      ld_sender_address_type = p_sender_addres_type.
    Fill the document data.
      w_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
      w_doc_data-obj_langu = sy-langu.
      w_doc_data-obj_name  = 'SAPRPT'.
      w_doc_data-obj_descr = ld_mtitle .
      w_doc_data-sensitivty = 'F'.
    Fill the document data and get size of attachment
      CLEAR w_doc_data.
      READ TABLE it_attach INDEX w_cnt.
      w_doc_data-doc_size =
         ( w_cnt - 1 ) * 255 + STRLEN( it_attach ).
      w_doc_data-obj_langu  = sy-langu.
      w_doc_data-obj_name   = 'SAPRPT'.
      w_doc_data-obj_descr  = ld_mtitle.
      w_doc_data-sensitivty = 'F'.
      CLEAR t_attachment.
      REFRESH t_attachment.
      t_attachment[] = pit_attach[].
    Describe the body of the message
      CLEAR t_packing_list.
      REFRESH t_packing_list.
      t_packing_list-transf_bin = space.
      t_packing_list-head_start = 1.
      t_packing_list-head_num = 0.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE it_message LINES t_packing_list-body_num.
      t_packing_list-doc_type = 'RAW'.
      APPEND t_packing_list.
    Create attachment notification
      t_packing_list-transf_bin = 'X'.
      t_packing_list-head_start = 1.
      t_packing_list-head_num   = 1.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.
      t_packing_list-doc_type   =  ld_format.
      t_packing_list-obj_descr  =  ld_attdescription.
      t_packing_list-obj_name   =  ld_attfilename.
      t_packing_list-doc_size   =  t_packing_list-body_num * 255.
      APPEND t_packing_list.
    Add the recipients email address
      CLEAR t_receivers.
      REFRESH t_receivers.
      t_receivers-receiver = ld_email.
      t_receivers-rec_type = 'U'.
      t_receivers-com_type = 'INT'.
      t_receivers-notif_del = 'X'.
      t_receivers-notif_ndel = 'X'.
      APPEND t_receivers.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
           EXPORTING
                document_data              = w_doc_data
                put_in_outbox              = 'X'
                sender_address             = ld_sender_address
                sender_address_type        = ld_sender_address_type
                commit_work                = 'X'
           IMPORTING
                sent_to_all                = w_sent_all
           TABLES
                packing_list               = t_packing_list
                contents_bin               = t_attachment
                contents_txt               = it_message
                receivers                  = t_receivers
           EXCEPTIONS
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                OTHERS                     = 8.
    Populate zerror return code
      ld_error = sy-subrc.
    Populate zreceiver return code
      LOOP AT t_receivers.
        ld_receiver = t_receivers-retrn_code.
      ENDLOOP.
    ENDFORM.
    *&      Form  INITIATE_MAIL_EXECUTE_PROGRAM
          Instructs mail send program for SAPCONNECT to send email.
    FORM initiate_mail_execute_program.
      WAIT UP TO 2 SECONDS.
      SUBMIT rsconn01 WITH mode = 'INT'
                    WITH output = 'X'
                    AND RETURN.
    ENDFORM.                    " INITIATE_MAIL_EXECUTE_PROGRAM
    *&      Form  POPULATE_EMAIL_MESSAGE_BODY
           Populate message body text
    form populate_email_message_body.
      REFRESH it_message.
      it_message = 'Please find attached a list test lips records'.
      APPEND it_message.
    endform.                    " POPULATE_EMAIL_MESSAGE_BODY

    Hi
      check the blow code:
    DATA:   receiver LIKE somlreci1 OCCURS 0 WITH HEADER LINE.
    MESSAGE ZF100 (FTP an UDB fehlgeschlagen)
      text-msgid = msgid.
      text-msgno = msgno.
      text-msgv1 = msgv1.
      text-msgv2 = ' '.
      text-msgv3 = ' '.
      text-msgv4 = ' '.
    express_hold_time
      express_hold_time-days = 01.
      express_hold_time-h_min_sec = 240000.
    receiver
      receiver-receiver = mreceivr.
    Gruppe von Empfängern
      receiver-rec_type = 'C'.
    und Expressmeldung ausgeben
      receiver-express  = 'X'.
      APPEND receiver.
      CALL FUNCTION 'MESSAGE_SEND_AS_MAIL'
           EXPORTING
                msgid     = text-msgid
                msgno     = text-msgno
                msgv1     = text-msgv1
                msgv2     = text-msgv2
                msgv3     = text-msgv3
           TABLES
                receivers = receiver.
      IF sy-subrc <> 0.
        WRITE:/ 'hat nicht geklappt', 'SY-SUBRC =', sy-subrc.
      ENDIF.

  • Send report Via Email in HTML format

    hi,
    i am using forms 6.0
    I want to send my report Via Email to an email address in HTML Farmat.i want to set destination property at run time retriving from database. (mean without giving any runtime parameter manually)Plz tell me how i can do that i am working in windows environment.
    Waiting 4 ur reply.
    Thanx in advance.
    Zahid Raj.

    Zahid,
    reports6i sends mails where the Report itself is attached as a file in the format you specified. The support for sending a report as part of the HTML mail body is provided in Reports9i.
    Frank

  • Send report via email as xls file.

    Hello from Spain,
    Sorry if this is not the correct forum. It's both a forms and reports question, but I think it fits better in the reports forum. I have queried into the forums for similar questions and found some threads without any replies around this same issue. I wish I am lucky today.
    I have developed some web forms which generate pdf and txt reports. The latter ones make use of desformat=delimiteddata when calling the reports. They run fine. I have also developed one form which suscribes those reports to email addresses. To do so, I am setting those email addresses in the DESNAME reports parameter and setting DESTYPE parameter as MAIL. They arrive as an attachment with pdf or txt extensions.
    Now, I am required to deliver those reports as xls files. I have been reading that desformat=spreadsheet would allow me to do so (as well as formatting the reports and make them look "cuter" than by using just delimiteddata), but have been unable to do it so far. When setting desformat=spreadsheet, reports are sent via email as html attachments, and when they are opened they look awful. Is there any way I can do this? It shouldn't be a too big deal, but I feel completely unable.
    Thank you,
    Fernando G.

    Hi,
    Please check the following forum thread that may help --> Re: Generate report in Excel and send to user via email.
    Thanks, RZ

  • Send report to email address!

    Hi Expers,
    Besides Information Broadcasting, is there anothe way to send out a certain query report to email address? Like the one in Process chain error report!  Thanks!
    Linda

    Hi
    See
    http://help.sap.com/saphelp_nw04/helpdata/en/28/734d3caa70ea6fe10000000a114084/content.htm
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/28/734d3caa70ea6fe10000000a114084/content.htm">http://help.sap.com/saphelp_nw04/helpdata/en/28/734d3caa70ea6fe10000000a114084/content.htm</a>
    Thanks
    SKR

  • Webi Publication - Do not send report by email when zero records

    Hello,
    I have a report that I am scheduling.  It is using dynamic recipients and personalization based on the recipients.  Some of the recipients will have zero records for the report and I do not wish to send the report by email to them.  I have searched and found a "workaround" of adding a conditioned error in the footer to get a division by zero error if there are no records.  However, the report still runs and gets sent to the recipient with no data.  Any way to accomplish what I want to do?
    I am using SAP BusinessObjects BI Platform 4.1 Support Pack 2 Version: 14.1.2.1121
    My data sources are Excel, so I am not using a Universe for this particular application.
    Thank You in advance.

    I have been trying different options and the most promising one would be to generate a list of dynamic recipients that have data and output it to Excel file.  I can use that Excel file as data source for a Webi Document that is going to be used as the dynamic recipient document in a publication.
    One problem is I cannot automate the creation and replacement of an Excel file in InfoView folders.  This means I would have to update the Excel file manually.  Also it seems like the Webi document used for dynamic recipients must be refreshed and saved, otherwise the old list of recipients is used by the publication.

  • Send reports as email attachment

    Hi,
    In the APEX application, I have a page that has filters on top and few reports generated based on the given filter values. I have a email button that when pressed, send the whole page as an email attachment. I cannot use PDF. Is it possible to send the page with few reports as email attachment?
    Thanks
    saru

    When you send as an e-mail, do you mean the html produced report or some sort output file? You could send it as an excel produced output.
    Why can't you use a PDF option in this case?
    Thank you,
    Tony Miller
    Webster, TX

  • Want to send report Via Email

    hi,
    i am using forms 6.0
    I want to send my report Via Email to an email address in HTML Farmat.i want to set destination property at run time retriving from database. (mean without giving any runtime parameter manually)Plz tell me how i can do that i am working in windows environment.
    Waiting 4 ur reply.
    Thanx in advance.
    Zahid Raj.

    Hi Zahid
    From Forms 6.0, you need to call Reports using standard SRW.Run_Product call. Please refer to the product document for other SRw calls which can be used for Forms/Reports integration. In this SRW call, you need to sent the runtime argument to Reports. In your case, write a pl/sql code which would set the destype=mail, desformat=html and desname set to the email address for reciever which you would be fetching from DB in Forms application. And then send these arguments in the SRW call to run the Reports.
    Thanks
    Rohit
    Thanks
    Rohit

  • Send report in email ! URGENT !

    hey everyone,
    i have a requirement where we want to broadcast a report once the loads are finished. I have a process chain "zdaily". the requirement states that once the process chain is successful, we want to broadcast a report "Orders by Customer" to a user via email. i searched on SDN but i didnt understand the steps i need to follow to achieve this. Please help me out.
    thanks
    Laura.

    Hi,
    Here are the steps.
    1. at the end of your process chain , include the  process type " Trigger Event data change (for broadcaster)" .
           (this is available under process type of Loadprocess and post-processing )
    2.  Maintain the variant for the trigger event data change . ie) specify the infocube name which you want to broadcast the report .
    3.  Activate the process chain..
    4. go to the information broadcaster for the report  , in the scheduling option  you will find "  Execution with Data Change in the InfoProvider " &  "Scheduling in SAP Background Processing ".
    In that mark the check box for execution with datachange in the infoprovider.
    5. If you didn't find the option as above  I said , then you have to check the authorization óbject S_RS_BCS . In that object check the RS_EVTYPE  whether the DC (Execution with Data Change in the InfoProvider) is enabled.
    6. Schedule the process chain , it will trigger the information broadcaster and it will precalculate the report send a mail to the users.
    Regards,
    Siva.

  • Run and send report as email from forms10g

    Hi,
    we are generating a report from forms10g and sending it as an attachment in an email using RUN_REPORT_OBJECT and everyting is fine.
    but we would like to use the parameter 'REPLYTO' in addition to FROM,CC,SUBJECT. i tried to use 'REPLYTO' but in the email i am not seeing the email address corresponding to the 'REPLYTO'
    ADD_PARAMETER(thelist, 'REPLYTO',TEXT_PARAMETER, report_replyto_address);
    can anyone guide me how to use this 'REPLYTO' parameter
    Also is there anyways we can het a 'BODY' in the email, i think we do not have 'BODY' as the parameter
    Thanks
    Vinod

    I don't know about Run_product.
    U can achieve it by using rwrun command
    eg. Client_host(rwrun...)
    this proc. in Webutil package.
    we can pass parameter like Desformat=PDF,Destype=MAIL
    reply_to,cc,bcc,subject, from, desname, report output send as attachment to that mail.
    Best Regards,
    Avinash Deokar

  • Sending reports by email

    I have a report that will be broken by User name. There is a table which holds that user's email address.
    What I would like to do is have the Crystal report, separate the large report to ind. users.
    so the date would look like this:
    User              date              Cust no                     Cust name         Note1
    Joe                010114         123                      Mycust1                 note1a
    Joe                050114          456                     Mycust2                 note1b
    John              040114           789                    Mycust1                  note1a
    I can get the email from another table. Where do i place the email address so that it would break after line2 and send that part ( the first 2 lines here) to Joe?

    hi Paul,
    are you using businessobjects enterprise or crystal reports server?...i.e. creating a publication? if so i can move this post to the bi platform space.
    or are you developing an application? if so, what sdk?
    -jamie

  • Send Report By email Dynamic

    Hi,
    I'm using Oracle E-business suite 12.1.3 , and I Have requirment to create report using the BI publisher with the E-business suite.
    The report simply will display data as below
    employee number, employee name , employee email (stored in the data base) , Employee sallary details.
    I created the rdf and generated the XML file and the template
    how ever we need to email the RTF file output from the report to each employee according to his email
    Example
    records returned
    001 Employee1 [email protected] xxxxx
    002 Employee2 [email protected] xxxxx
    003 Employee3 [email protected] xxxxx
    004 Employee4 [email protected] xxxxx
    now I need when i run the report automatic each employee have his own data as RTF attached in his email.
    Is there any steps to do this.
    Best Regards
    Amir

    plz see http://oraclemaniac.com/2012/03/29/bursting-email-report-output-in-xml-publisher-reports/
    tag "xapi:request select="

  • Send Report By Email (Not Attachment)

    Hi,
    I have the following query,
    select last_name, first_name, email from tableA where data is not null;
    With the results of this query, I would like to send a customized letter by email, but not as an attachment, rather through the email body.
    EXAMPLE:
    Dear John Smith,
    Thank you for your interest etc…..
    Can anybody help me with this?
    Thanks in advance.
    VC

    Hi,
    I don't think I made myself clear when I posted the original question.
    I am get the required result if I hard code the values in the url:
    http://server/reports/rwservlet?destype=mail&desformat=html&report=c:\reportName.rdf&userid=user/pass@DB&desname=toEmailAddress&from=fromEmailAddress
    My problem is, I need to send this to multiple address, but these addresses will be generated at runtime. Therefore what I think I would need is a loop that executes the url, until all emails have been sent.
    http://server/reports/rwservlet?destype=mail&desformat=html&report=c:\reportName.rdf&userid=user/pass@DB&desname=emailaddress1&from=fromEmailAddress
    http://server/reports/rwservlet?destype=mail&desformat=html&report=c:\reportName.rdf&userid=user/pass@DB&desname=emailaddress2&from=fromEmailAddress
    etc....
    Thanks

Maybe you are looking for

  • Maps is not working properly anymore

    I am using iPad2 with iOS6 and since a few days Maps is not working properly anymore

  • Can I use 65W Yoga charger for my X1 Carbon?

    Hiya, I've bought this charger on eBay : http://www.amazon.co.uk/ThinkPad-ADLX65NCC3A-36200253-45N0261-45N0262/dp/B00LUIFVIM The label on the charger says: MODEL 45N0261 FRU P/N 45N0262 Lenovo P/N 36200253   It was advertised as X1 charger, but when

  • InDesign CC Won't Save File

    Running InDesign 9.1 Mac 10.8.5 I have been using InDesign CC just fine with no issues. I have one file that I have edited for at least a couple of months and have had no issues. All of a suddent today, it won't save. It has all the options to save,

  • JComboBox dropdown table list

    Hi, Any helps will be very appreciated. I have a problem in the JCombobox dropdown list. I want to have multiple columns in the dropdown list of the JComboBox, eg. when I type something in the JComboBox, it will query some infomation from the Databas

  • My printer cannot connect to Web services

    Hi, When I tried to set up the Web Services, I got an error.  The error is "Server problem. The printer could not connect to Web Services. The server might be busy or temporary unavilable. Try it again later." I am connected to the internet (WiFi) an