Vi to send mail-attachments via actX

Where could I find a library example in LBV6 to send a mail with
attachments via Outlook 97 and activeX?
I got an example in
http://zone.ni.com/devzone/explprog.nsf/6c163603265406328625682a006ed37d/7f4e34700d44ef4d86256894005aa751?OpenDocument
but this does not work.
Thanks.
Regards
Gerard D'Ans ([email protected])
Laborelec Rodestraat,125 B-1630 Linkebeek
tel 32 2 382 0568
fax 32 2 282 0241
ULB SMA ([email protected])
Blvd F D Roosevelt CP165 B-1050 Brussels
Tel 32 2 650 2515
http://www.ulb.ac.be/polytech/laborulb/index.htm

The example you had a link to was for Labwindows. Try this example for LabVIEW:
http://zone.ni.com/devzone/explprog.nsf/6c163603265406328625682a006ed37d/365c4572fd9d0571862569050058435c?OpenDocument
Hope this helps.
Brian

Similar Messages

  • Sending Mail attachments to windows users

    When sending Mail attachments (Jpegs) to windows PCs they arrive embedded in the message body, not as an attachment that can be saved.  Can I, or the recipient, do anything to rectify this?

    From Mail Help:
    If Windows users have trouble with your attachments
    Windows users might not be able to read attachments you send, the messages they’re attached to, or both; or they might see two files when you’ve sent only one.
    Try these solutions:
    Choose Edit > Attachments > Always Send Windows Friendly Attachments.
    Choose Edit > Attachments > “Always Insert Attachments at End of Message” to automatically have attachments inserted at the end of a message. Otherwise, some Windows recipients might not easily see all of your message because parts of it are put into attachments, which they have to open to read.
    Use filename extensions, such as .doc for a Microsoft Word document, in the names of files you send to Windows recipients. This way, the files can be read by a Windows application.
    If you send a file (for example, “MyFile”) to someone who uses a Windows computer, the recipient might see two files: “MyFile” and “._MyFile.” The recipient can ignore the file named “._MyFile.”
    If you have a New Message window open, the Edit > Attachments commands don’t contain “Always” and they apply only to the message you’re currently composing.
    If you haven’t set the default, click Attach in the toolbar of the New Message window and select the Send Windows Friendly Attachments checkbox.

  • How to send mail attachments using java mail

    can any one help how to create mails attachments using java mail

    you can do it like this:
    Message msg = new MimeMessage(session);
    String fileAttachment = "c:/test.txt";
    Multipart mp = new MimeMultipart();
    BodyPart bp = new MimeBodyPart();
    FileDataSource fds = new FileDataSource(fileAttachment);
    bp.setDataHandler(new DataHandler(fds));
    bp.setFileName(fds.getName());
    mp.addBodyPart(bp);
    msg.setContent(mp);
    ...

  • Sending pdf attachments via e-mail in BSP

    Hi all,
    i have written a code for sending email to a given mailid with some text but
    can anyone tell me step to step procedure for sending pdf attchments to mailid.
    Thanks and Regards,
    Sneha Puppala.

    Hi ravikiran,
    This is my code for sending email with attach:
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <%@extension name="bsp"   prefix="bsp"%>
    <htmlb:content id="content" design="classicdesign2002design2003" controlRendering="sap"
                   rtlAutoSwitch    = "true">
      <htmlb:page title = "BSP Extension: HTMLB / Element: fileUpload">
        <htmlb:form method = "post" encodingType = "multipart/form-data">
    <head>
        <link rel="stylesheet" href="../../sap/public/bc/bsp/styles/sapbsp.css">
        <title>mail to </title>
      </head>
        <bsp:testSuite id="testSuite" name = "<fileUpload>" key = "<%=content->design%>">
            <% IF NOT %_testSuite->id_list IS INITIAL.%>
            <bsp:testCase nr="DATA" text = "Data Handling"/>
            <table border="1px" cellpadding="1px" cellspacing="0px" style="font:normal 10pt Arial">
              <tr> <th>id</th> <th>File Name</th> <th>Content Type</th> <th>Length</th> </tr>
              <%-- Notice: It's recommended to do input processing in onInputProcessing
                event block, not in onLayout block like in this case. --%>
                <% DO.
                    DATA: fu        TYPE REF TO CL_HTMLB_FILEUPLOAD,
                        next_id   TYPE STRING.
                   next_id = %_testSuite->next_restore_id( ).
                   IF next_id IS INITIAL. EXIT. ENDIF.
                    fu ?= CL_HTMLB_MANAGER=>GET_DATA( request = request id = next_id name = 'fileUpload' ).
              %>
                <tr>
                    <td><%=next_id%></td>
                    <td><%= cl_http_utility=>escape_html( fu->file_name ) %> </td>
                    <td><%=fu->file_content_type%> </td>
                    <td><%=fu->file_length%></td>
                </tr>
              <% ENDDO. %>
            </table>
          <% ENDIF. %>
          <%----
    %>
          <%
             DATA: event            TYPE REF TO if_htmlb_data,
                   fileUpload_event TYPE REF TO CL_HTMLB_FILEUPLOAD.
             event = cl_htmlb_manager=>get_event_ex( request ).
             IF event IS NOT INITIAL AND event->event_name = htmlb_events=>fileupload.
               fileUpload_event ?= event.
          %>
              <table border="1px" cellpadding="1px" cellspacing="0px" style="font:normal 10pt Arial">
                <tr> <td>Event-Class</td>              <td><%= event->event_class%>                  </td> </tr>
                <tr> <td>Event-ID</td>                 <td><%= event->event_id%>                     </td> </tr>
                <tr> <td>Event-Name</td>               <td><%= event->event_name%>                   </td> </tr>
                <tr> <td>Event-Type</td>               <td><%= event->event_type%>                   </td> </tr>
                <tr> <td>Event-Server Name</td>        <td><%= event->event_server_name%>            </td> </tr>
                <tr> <td>Event-Defined</td>            <td><%= event->event_defined%>                </td> </tr>
                <tr> <td>FileUpload-Name</td>          <td><%= fileUpload_event->file_name%>         </td> </tr>
                <tr> <td>FileUpload-Content_Type</td>  <td><%= fileUpload_event->file_content_type%> </td> </tr>
                <tr> <td>FileUpload-Length</td>        <td><%= fileUpload_event->file_length%>       </td> </tr>
              </table>
          <%
             ENDIF.
          %>
          <%----
    %>
          <bsp:testCase text = "upload attachment" />
          <htmlb:fileUpload id       = "<%= %_testSuite->seq_nr( )%>" />
          <htmlb:button     id       = "submitButton"
                            text     = "Upload"
                            onClick  = "HandleUpload" />
          <%----
    %>
    <html>
    <body class="bspBody1">
      <H1 class="bspH1"> Consultation-Service </H1>
        <form method = "post" action="<%=page->get_page_url( )%>">
          <table class="bspTbvStd" cellpadding="4">
            <tr>
            <td class="bspTbvHdrStd" colspan="2" align="center"><font size="4">Address</font></td>
            </tr>
            <tr class="bspTbvCellStd">
              <td>Name</td>
              <td><input type="text" name="name"
                         value="<% page->write( value = name ). %>" size="40" ></td>
            </tr>
                    <tr class="bspTbvCellStd">
              <td>Mail address1</td>
              <td><input type="text" name="mail_address1"
                         value="<% page->write( value = mail_address1 ). %>" size="40"></td>
            </tr>
            <tr class="bspTbvCellStd">
              <td>Mail address2</td>
              <td><input type="text" name="mail_address2"
                         value="<% page->write( value = mail_address2 ). %>" size="40"></td>
            </tr>
          </table>
          </bsp:testSuite>
        </htmlb:form>
        </htmlb:page>
    </htmlb:content>
        </form>
      </body>
    </html>
    On Input Processing:
    if page->messages->num_messages( ) eq 0.
      if mail_address1 is not initial and mail_address2 is not initial.
          call method application->send
            exporting mail_address = mail_address1
            changing  messages     = page->messages .
        call method application->send
            exporting mail_address = mail_address2
            changing  messages     = page->messages .
        if page->messages->num_messages( ) eq 0.
          data text type string.
          text = application->get_text( ).
          navigation->set_parameter( name = 'mailtext' value = text ).
          navigation->next_page( 'show' ).
        endif.
      else.
        navigation->next_page( 'no_address' ).
      endif.
    endif.
    "method send in defined class":
    method SEND.
    CLASS cl_bcs DEFINITION LOAD.
    DATA:
    lo_send_request TYPE REF TO cl_bcs VALUE IS INITIAL.
    lo_send_request = cl_bcs=>create_persistent( ).
    Message body and subject
    DATA:
    lt_message_body TYPE bcsy_text VALUE IS INITIAL,
    lt_att_content_hex type solix_tab,
    lo_document TYPE REF TO cl_document_bcs VALUE IS INITIAL.
    APPEND 'Dear Vendor,' TO lt_message_body.
    append ' ' to lt_message_body.
    APPEND 'Please find the attached report.'
    TO lt_message_body.
    append ' ' to lt_message_body.
    APPEND 'Thank You,' TO lt_message_body.
    lo_document = cl_document_bcs=>create_document(
    i_type = 'RAW'
    i_text = lt_message_body
    i_subject = 'Visit report' ).
    data: data_tab type solix_tab,
          p_data type XSTRING.
      call function 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          buffer     = p_data
        TABLES
          binary_tab = data_tab.
    DATA: lx_document_bcs TYPE REF TO cx_document_bcs VALUE IS INITIAL.
    TRY.
    lo_document->add_attachment(
    EXPORTING
    i_attachment_type = 'PDF'
    i_attachment_subject = 'Visit Report'
    I_ATTACHMENT_SIZE =
    I_ATTACHMENT_LANGUAGE = SPACE
    I_ATT_CONTENT_TEXT =
    I_ATTACHMENT_HEADER =
    i_att_content_hex = data_tab ).
    CATCH cx_document_bcs INTO lx_document_bcs.
    ENDTRY.
    Add attachment
    Pass the document to send request
    lo_send_request->set_document( lo_document ).
    Create sender
    DATA:
    lo_sender TYPE REF TO if_sender_bcs VALUE IS INITIAL,
    l_send type ADR6-SMTP_ADDR value '[email protected]'.
    lo_sender = cl_cam_address_bcs=>create_internet_address( l_send ).
    Set sender
    lo_send_request->set_sender(
    EXPORTING
    i_sender = lo_sender ).
    Create recipient
    DATA:
    lo_recipient TYPE REF TO if_recipient_bcs VALUE IS INITIAL.
    lo_recipient = cl_sapuser_bcs=>create( sy-uname ).
    Set recipient
    lo_send_request->add_recipient(
    EXPORTING
    i_recipient = lo_recipient
    i_express = 'X' ).
    lo_send_request->add_recipient(
    EXPORTING
    i_recipient = lo_recipient
    i_express = 'X' ).
    Send email
    DATA: lv_sent_to_all(1) TYPE c VALUE IS INITIAL.
    lo_send_request->send(
    EXPORTING
    i_with_error_screen = 'X'
    RECEIVING
    result = lv_sent_to_all ).
    COMMIT WORK.
    message 'The visit report has been sent' type 'I'.
    Thanks and Regards,
    Sneha Puppala.

  • Sending mail attachments as attachments, not images

    I send a lot of resumes, and I set up my Mac Mail to function with my website's email address.
    I recently changed my resume to a PDF. When I attach it, it appears as an image. I just want to attach it for others to download as a file. I know I can toggle the way it's viewed in the email, as an image or as an icon for a file, but I believe that only changes the way I see it, not the person receiving it. Any ideas how to simply attach it as a saveable file?

    It really depends on the client email program as to how it's displayed, you might try "Always send as Windows friendly attachment", but likely you'll have to compress/archive/zip up that PDF before attaching to not have it displayed.

  • Sending mail problem via php mail()

    I have a PHP server  with Apache 2 and PHP 4 and 5 and MySQL
    I have a very very simple  mail script that only works with @gmail.com, hotmail.com etc
    But  say if I had an email address for my company "[email protected]" it  does not go through.
    Is this a PHP issue or a Server issue?
    How  can I fix this as my customer is being an Arse!
    mail("$mail1","Thank you for registering with $sitename",
    "You have registered this email address at $sitename \n
    Email: $mail1
    Password: $pass
    Date/Time: $date","FROM:$adminaddress");

    First, you need to talk to your host, and have them install PEAR::Mail, and have them put the Mail.php path into the php.ini include path directive.
    Here is a function I was using some time ago, before I switched to Zend Mail.
    You need to edit / add the BOLD parts
    <?php
    require_once("Mail.php");
    function sendEmail($to_mail, $to_name, $from_mail, $from_name, $subject, $body){
         $from = $from_name." <".$from.">";
         $to = $to_name." <".$to.">";
         $recipients = $to_mail;
         $headers["From"] = $from;
         $headers["To"] = $to;
         $headers["Subject"] = $subject;
         $headers["Reply-To"] = $from_mail;
         $headers["Content-Type"] = "text/plain; charset=UTF-8";
         $headers["MIME-Version"] = "1.0";
         $headers["Return-path"] = $from_mail;
         $headers["X-Priority"] = "3";
         $headers["X-MSmail-Priority"] = "Normal";
         $smtpinfo["host"] = "YOUR MAIL SERVER HERE";
         $smtpinfo["port"] = "25";
         $smtpinfo["auth"] = true;
         $smtpinfo["username"] = "YOUR EMAIL LOGIN USER HERE";
         $smtpinfo["password"] = "YOUR LOGIN PASSWORD HERE";
         $mail_object =& Mail::factory("smtp", $smtpinfo);
         $mail_object->send($recipients, $headers, $mailmsg);
    ?>
    To send email:
    <?php
    sendEmail($mail1,
    $recipient_name,
    $from_mail,
    $from_name, "Thank you for registering with $sitename", "You have registered this email address at $sitename \n
    Email: $mail1
    Password: $pass
    Date/Time: $date","FROM:$adminaddress");
    ?>

  • VSTO development outlook plugin how to get the full storage path attachment send mail attachments added

    Such as the title, but I have a filepath verified discoveries are empty, there is a member of the method will be invoked after GetTemporaryFilePath COM error, but also can not get in VSTO attach the member variable. Accessories are found himself in a temporary
    directory exists, the registry seems to have a place to record the address of this directory, but this is his findings do not know can not be used as a method to obtain

    Hello,
    First of all, the forum is for Office Apps. That's why I'd recommend asking VSTO specific questions on the
    Visual Studio Tools for Office (VSTO)  forum instead. For Outlook dev questions see the Outlook for Developers  forum .
    > there is a member of the method will be invoked after GetTemporaryFilePath COM error, but also can not get in VSTO attach the member variable.
    What exception do you get in the code? Could you please be more specific?
    The GetTemporaryFilePath method is only valid for those attachments whose Type property
    is OlAttachmentType.olByValue. That means that the attachment is a copy and that the copy can be accessed even if the original file is removed. For other attachment types, the GetTemporaryFilePath method
    returns an error.
    GetTemporaryFilePath also returns an error when accessing an Attachment object
    in an Attachments collection
    or in the AttachmentSelection object.
    UseGetTemporaryFilePath only in attachment event callbacks listed below for various Microsoft Outlook items:
    AttachmentAdd
    AttachmentRead
    AttachmentRemove
    BeforeAttachmentAdd
    BeforeAttachmentPreview
    BeforeAttachmentRead
    BeforeAttachmentSave
    BeforeAttachmentWriteToTempFile
    Where do you use the
    GetTemporaryFilePath method of the Attachment class? What code do you use?

  • Sending .xls Attachments via FB SO_DOCUMENT_SEND_API1

    Hi group,
    yes, i know it seems that's a post with a developer touch.
    but that's my last chance because i think it's a converting problem ebcdic/ascii. maybe.
    Description:
    I start a Program which create a attachment as an .xls file. Everything works fine after open the file the data looks like òððõñòñò or ððððððððððñòóôõö÷ó@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    Is this a converting problem ?
    We're at 46C Ebcdic .
    Sorry for this crazy post
    Regards Thomas
    P.S: a .txt file is readable

    Hi Thomas,
    yes, you are really in bad luck :-(((
    you are facing an EBCDIC problem here ... as you might have detected all the "@" are EBCDIC blanks.
    Why does this happen ?
    TXT files are convertible files => the system converts them when it sends them out.
    XLS files are BINARY files (you might know, that there will be just rubbish when you do a CPC on XLS files). Now, the problem occurs:
    SAP generates them in EBCDIC which is the error in my eyes. Then they are correctly tagged as binary files without conversion.
    So, as you are running on a supported release, you might want to open an OSS ticket. But, I don't know, if SAP will solve this issue here ...
    Obviously, you are the first one trying this ...
    Good luck,
    Volker Gueldenpfennig, consolut.gmbh
    http://www.consolut.de - http://www.4soi.de - http://www.easymarketplace.de

  • Sending photo attachments from Mail to Gmail

    I've been sending photo attachments via Mail for years and haven't had trouble until recently. Now I'm getting complaints from Gmail users that the attachments come through as embedded files. I guess on the Gmail end, they don't see it listed out as an attachment, but as part of the mail body. What's going on here?
    I attach files same as I always have - by clicking on "attach", then selecting the file(s) I want to attach. I always leave "send windows friendly attachments" selected (although in an experiment, I tried sending it without clicking that, and the images came over all stretched out and shrunken in a very strange way).
    I can't think of what would be happening, but I'm assuming it's something in either the way Mail or Gmail is treating the photos - and I'd like to have them come through as attachments, rather than embed files (I'm a photographer and have heard from some of my clients that the embed is a pain - they have to "save as" right click on each image rather than just select "save attachments" or something).
    Any ideas??

    Send to these recipients using only Plain Text, and all should be well. To test choose a message you previously sent from the Sent mailbox, open, click on Message in the menubar, choose Send Again, then click on Format and choose Make Plain Text.
    Rich Text as received by those using Outlook or Outlook Express, as two examples, will see the RTF as HTML, and the attachments will appear embedded -- although they are not.
    Ernie

  • Sending mails with attachments is sending some parts in HTM format

    I have configured my ME account to Apple Mail. When I send an email with first some text, then i add an picture under the text, and after the picture i add some more text. Then i send the mail to someone.
    When that person opens the mail in Outlook on Windows for example, the first text that i typed above the picture is visible in the mail, the picture is added as an jpg attachment, but the text that i typed under the picture is always added in a HTM file
    So they don't see the whole mail, only the first end until the picture, the rest is an HTM attachment.
    It happens with mails send with Mobile Me, but also with other POP3 accounts.
    I already tried to change EDIT - ATTACHMENTS - SEND AS WINDOWS ATTACHMENTS and ATTACHMENTS AT END OF THE MAIL
    Both settings doesn't work.
    Please HELP!!

    I was troubleshooting my own issue noted above and tried to send the attachments via gmail's web interface (bypassing Apple Mail). This time, gmail provided an error message stating that the file contained a virus.
    Since it was a zip of several Word docs, I saved them as PDFs and then rezipped, and Apple Mail sent them off like a champ.
    Evidently, Mail does not have a method for relaying the precise nature of the error message that gmail sends (in this case that the attachment had what gmail thought was a virus). This would be a prime area for some software developers to tackle on a future version of Mail.
    By the way, the files almost certainly do not contain viruses; they are extremely old Word Docs that have been on my successive Mac hard drives for at least 9 years. Too old a format for gmail to recognize?
    Hope this helps someone who may be having the same trouble.

  • Not sending mails with attachments (Imap Gmail)

    I've only Imap-Gmail accounts in my Apple Mail, and using it for almost a year without any problems. But since a couple of weeks, most of the time I'll send an email with an attachment in it. I'll get the Pop-Up window that the mail can not be sent, and that I can choose another mailserver to send the mail. When I check my connection, there is not a problem. But the mail is still standing in my Outgoing Mail and is not sending.
    Can anyone help?

    I was troubleshooting my own issue noted above and tried to send the attachments via gmail's web interface (bypassing Apple Mail). This time, gmail provided an error message stating that the file contained a virus.
    Since it was a zip of several Word docs, I saved them as PDFs and then rezipped, and Apple Mail sent them off like a champ.
    Evidently, Mail does not have a method for relaying the precise nature of the error message that gmail sends (in this case that the attachment had what gmail thought was a virus). This would be a prime area for some software developers to tackle on a future version of Mail.
    By the way, the files almost certainly do not contain viruses; they are extremely old Word Docs that have been on my successive Mac hard drives for at least 9 years. Too old a format for gmail to recognize?
    Hope this helps someone who may be having the same trouble.

  • Cant Send Mail via DSL

    Im Apple Mail using iMac G4 and G4 tower. Both will recieve an send mail find via dial-up but will not send mail via dsl connection.
    We get our mail via ethernet > router > antenna > atenna > another router > antenna > ten miles away at another antenna then to dsl source.
    So our dsl connection/signal is going threw three other antennas and at least one router here in office before we get it.
    My ISP provider says we need to talk to our DSl provider.
    Any ideas? Our computer tech is out of office touch for a week.
    Ran

    Thanks but this doesn't answer my question.
    Allan, I am 99% percent sure that my ISP is not the same ones who supply our ethernet/broadband/DSL.
    Is your internet service provider (ISP) for your
    dial-up connection different from the ISP for the DSL
    connection?
    Yes, I believe that they are differrent, however, I have new info.
    At first my G4 tower with Earthlink account would not send out over etherner/broadband/DSl, but now it does! I, nor anyone else, has made any changes to the outgoing address that works for dial-up connection and is what we have always used until yesterday when we first tried the dsl/braoband
    Kind of a different situation and not typical or the
    norm to have a company that provides a DSL connection
    not be the internet service provider for the
    connection.
    Someone new came into our building for office space. He had the router, ethernet cables and antenna installed. He/we get electro-magnetic radiational signal from a larger business across the street who has a tower --soon to be a taller tower-- and they get there radiational signal from 10 miles away.
    Knowing who your ISP is for connecting to the
    internet regardless if using a dial-up connection or
    a DSL connection (DSL is considered a broadband) is
    important and if the email account and SMTP server
    being used is provided by the ISP being used for your
    internet connection or by a different email account
    provider not associated with the ISP used for
    connecting to the internet.
    Yes, I understand that is the case. Maybe I'm wrong and by some coincidence the DSL provider is Earthlink and that is why the G$ tower account began working for the outoging mail.
    Im still having the sam problem on the G4 iMac which is a local.com account they have told us the same as you have, that we need to know who the DSL provider is and what info they require in the outgoing( smtp ) line.
    You mentioned Earthlink which is an internet service
    provider that offers dial-up access and/or DSL access
    so does the Earthlink protocol you mentioned mean you
    are having problems sending with an Earthlink email
    account and SMTP server?
    Earthlink account is working now so again perhaps the DSL provider is coming through Earthlink and ergo we didnt need to make changes to the outgoing( smtp ) info line.
    Thats the only way that one can be explained.
    I take it you use the dial-up connection at home
    (which is provided by Earthlink?) and the DSL
    connection is used at the office?
    Thats correct. The inital DSl source for the business that is 10 miles away, must use Earthlink. I'm now presuming this is the case with this new info.
    However, there is another --3rd-- business on other side of street and he uses --Apple mac just like me-- and his ISP is "host centric". I looked at his mac preference accounts outgoing ( smtp ) line and his is
    "mail.the business name.com:his email address",
    i.e. he does not use Earthlink but he has no problem sending out mail via the same DSl/broadband connections we have
    The only reason he has his address in the outgoing mail liine is bceause he too is in larger business building with several differrent computers and email address's.
    I've tried all kinds of combinations that are similar to the Earthlink outgoing and the hostcentric outgoing
    but none work for the local.com account.
    The exact error message provided when trying to send
    messages is also pertinent information.
    "message delivery failed" "the attempt to read data from the server 'server-name' failed"
    Then it gives me option to try differrent server names.
    Thanks for your efforts Allan and ohters.
    Ran

  • Sending Mail via BSP

    hi all,
    i have a problem in sending mail via bsp.
    the case is i want to send reminder from e-portal. in order to do that i made a new bsp page and a new function modul.
    the bsp page is used for user interface and the function modul is used for the process for sending mail.
    in the function modul i send the mail via api.
    the bsp page and function modul is already finish. but when i testing them, the mail is not sent into mail inbox.
    if i checked in sap outbox, the mail sent via bsp is exists.
    i try to debug it the code for bsp page and function modul is already ok, no error occured.
    is there any clue why this happened ?
    is there any thing else that need to be config or set ?
    please help
    regards
    eddhie

    hi Raja,
    i have solved the problem sending mail via bsp.
    many thanks for your help, i rewards point for your answer.
    about the sap notes that you told me before, is it the way for setting how to send mail / messages via web application server right ?
    could please you give little explaination for the notes, because i think 80% of the notes is for basis configuration and i don't have authorization.
    beside that, what i have to do if in transaction SCOT there is a lot document still waiting for transmitted ?
    please help
    regards
    eddhie

  • Bursting Program not sending mails

    Bursting Program is not sending mails , we have checked everything and looking good , not generating logs.
    XML Publisher: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XDOBURSTREP module: XML Publisher Report Bursting Program
    +---------------------------------------------------------------------------+
    Current system time is 14-JAN-2014 07:50:56
    +---------------------------------------------------------------------------+
    XML/BI Publisher Version : 5.6.3
    Request ID: 101436869
    All Parameters: Dummy for Data Security=Y:ReportRequestID=101245852:DebugFlag=Y
    Report Req ID: 101245852
    Debug Flag: Y
    Updating request description
    Updated description
    Retrieving XML request information
    Node Name:RPC5150
    Preparing parameters
    null output =/u000/oracle/PTCCON/apps/apps_st/appl/xdo/12.0.0/out/ESCM1/EM185082.101436869
    inputfilename =/u000/oracle/PTCCON/apps/apps_st/appl/ncr_custom/ncrx/12.0.0/out/ESCM1/EM185082.101245852
    Data XML File:/u000/oracle/PTCCON/apps/apps_st/appl/ncr_custom/ncrx/12.0.0/out/ESCM1/EM185082.101245852
    Set Bursting parameters..
    Temp. Directory:/tmp
    [011414_075107900][][STATEMENT] Oracle XML Parser version ::: Oracle XML Developers Kit 10.1.3.130 - Production
    [011414_075107910][][STATEMENT] setOAProperties called..
    Bursting propertes.....
    {user-variable:cp:territory=US, user-variable:cp:ReportRequestID=101245852, user-variable:cp:language=en, user-variable:cp:responsibility=51687, user-variable.OA_MEDIA=http://ESPROD.daytonoh.ncr.com:8008/OA_MEDIA, burstng-source=EBS, user-variable:cp:DebugFlag=Y, user-variable:cp:parent_request_id=101245852, user-variable:cp:locale=en-US, user-variable:cp:user=EM185082, user-variable:cp:application_short_name=XDO, user-variable:cp:request_id=101436869, user-variable:cp:org_id=152, user-variable:cp:reportdescription=NCR_MFS_ACKNWLG_PDF_REP, user-variable:cp:Dummy for Data Security=Y}
    Start bursting process..
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    Executing request completion options...
    Finished executing request completion options.
    +---------------------------------------------------------------------------+
    Concurrent request completed
    Current system time is 14-JAN-2014 07:51:08
    +---------------------------------------------------------------------------+

    I was troubleshooting my own issue noted above and tried to send the attachments via gmail's web interface (bypassing Apple Mail). This time, gmail provided an error message stating that the file contained a virus.
    Since it was a zip of several Word docs, I saved them as PDFs and then rezipped, and Apple Mail sent them off like a champ.
    Evidently, Mail does not have a method for relaying the precise nature of the error message that gmail sends (in this case that the attachment had what gmail thought was a virus). This would be a prime area for some software developers to tackle on a future version of Mail.
    By the way, the files almost certainly do not contain viruses; they are extremely old Word Docs that have been on my successive Mac hard drives for at least 9 years. Too old a format for gmail to recognize?
    Hope this helps someone who may be having the same trouble.

  • Attachments via ABAP Proxy

    I have come across one client requirment where he needs to send the txt/pdf file as an attachment from R/3, currently that interface is using the ABAP Proxy, is there any idea about How to send the attachments via ABAP Proxy?

    Hi,
    Refer
    XI: RFC or ABAP Proxy ? ....ABAP Proxies with attachments
    /people/michal.krawczyk2/blog/2006/04/19/xi-rfc-or-abap-proxy-abap-proxies-with-attachments
    Problem sending xls file in an attachment via ABAP proxy
    Receive mail with PDF attachment into XI and send to ABAP proxy
    http://help.sap.com/saphelp_nw70/helpdata/en/51/d5cd16235e4643ae8ec92395c4ad97/frameset.htm
    Thanks
    Swarup

Maybe you are looking for

  • How do i move time machine backup to a new, bigger external drive in lion?

    i did some research and cma across severla different ways to transfer my time mashine backup from an old hd to a bigger one. i dont want to lose my backup and i just want to make sure im doing the right thing. also there were different ways of doing

  • The application Photoshop quit unexpectedly

    Hi, Every time I quit Photoshop I get the message the colored ball will appear and after a few seconds the message "The application Photoshop quit unexpectedly ". I have tried to remove the Photoshop CS3 Paths, the Adobe Photoshop CS3 settings and th

  • Problem with allowing HP to check

    Was asked to become a part of online program to improve your setups - printer stuff.  Well Let me tell you.  My printers, - both of them were working just fine until I said yes - I finally got this printer working but my Photo Printer is STILL off li

  • Multiple TextField Validation

    I want to do this: I have 3 textfields, when I click the submit button I want the validation to check whether there's data in any of the textfields (at least in one) if so, then all three textfields are Valid, if non of the textfield have data then a

  • FLVplayback and preview image how to do?

    LIke youtube, they have a preview image of the flash video. How do i get flash using actionscript to dynamically generate a image realtime? Oh, one more question, how do i convert any file to an flv through the internet? dont worry, i'm not trying to