Want to send email

Hi all,
i need to create a task to send email but i'm muddled with all informations which I find.
In fact, we develop a Web application on IBM WebSphere interfaced to SAP and with a RFC function we start a workflow. No SAP WAS.
In this last, we wish to create a task which will send a email to a user. The email'll be recovered in the infotype 105, subtype 0010.
On sdn.sap.com i read that it was necessary to install SAPConnect, but this last work with SAP WAS isnt'it ?
Can you help me for this ?
Thanks so much for the daily reading

Hi "tafkap",
To send an email from within SAP systems require you to configure SAPconnect (in SAP itself) on APPLICATION server level.
Furthermore if this has been done, you can use the RFC module SO_OBJECT_SEND in the following way:
Fill RECEIVERS (TABLE of SAP type SOOS1) with your adressees.
Fill OBJECT_HD_CHANGE (STRUCTURE of SAP type SOOD1) with valid details.
Fill OBJCONT (TABLE of SAP type SOLI) with your message details.
Call the rfc module 'SO_OBJECT_SEND'
  EXPORTING parameters:
      object_hd_change = OBJECT_HD_CHANGE
      object_type = 'RAW'
      owner = 'VALIDUSER'
  TABLES:
      objcont = OBJCONT
      receivers = RECEIVERS
  EXCEPTIONS:
      ACTIVE_USER_NOT_EXIST
      COMMUNICATION_FAILURE
      COMPONENT_NOT_AVAILABLE
      FOLDER_NOT_EXIST
      FOLDER_NO_AUTHORIZATION
      FORWARDER_NOT_EXIST
      NOTE_NOT_EXIST
      OBJECT_NOT_EXIST
      OBJECT_NOT_SENT
      OBJECT_NO_AUTHORIZATION
      OBJECT_TYPE_NOT_EXIST
      OPERATION_NO_AUTHORIZATION
      OWNER_NOT_EXIST
      PARAMETER_ERROR
      SUBSTITUTE_NOT_ACTIVE
      SUBSTITUTE_NOT_DEFINED
      SYSTEM_FAILURE
      TOO_MUCH_RECEIVERS
      USER_NOT_EXIST
      ORIGINATOR_NOT_EXIST
      X_ERROR
Regards,
Rob.

Similar Messages

  • I want to send email from jsp,

    i want to send email from jsp, i dont know smtp:host, how to send mail?
    plz carify this doubt sir.

    OK thanks sir but i installed alredy. i write this code. plz send any error's are there. and i dont know smtp:host name. i put my port address?
    try{
        //Set the host smtp address
        Properties props = new Properties();
        props.put("mail.smtp.host", "//10/0/6/252");
        // create some properties and get the default Session
        Session session = Session.getDefaultInstance(props, null);
         // create a message
        Message msg = new MimeMessage(session);
        // set the from and to address
        msg.setFrom(new InternetAddress("[email protected]"));
         msg.addRecipient(Message.RecipientType.To,new InternetAddress("[email protected]"));
        // Setting the Subject and Content Type
        msg.setSubject("hi..");
        msg.setText("hi bharath how are you");
        Transport.send(msg);
    catch(Exception e)
                  out.println(e);
         }

  • Want to send email through web server tomcat 5.5

    hi
    i want a send email through java programme using tomcat web server

    So do it.
    What's your question?
    Did you read the JavaMail FAQ and all the
    other wonderful documentation on the JavaMail
    web site?

  • I want to send emails using Discovere Plus.

    Hi,
    I want to send email using discoverer plus. I know i can send using discoverer viewer but i do not want to use the discoverer view for the same.
    Can any one tell me how to send a report in excel format via email in discoverer plus.
    We have the send option under File menu in discoverer desktop but not in discoverer plus.
    Thanks in advance
    Ahmed

    That would have to be a product enhancement. With our upcoming integration with BI Publisher and with Delivers (part of the BI Suite Enterprise Edition) we believe this requirement should be met. Please look out for more announcements and details on these functionalities.
    Regards
    Abhinav Agarwal
    Oracle Business Intelligence Product Management
    http://www.oracle.com/bi
    http://www.oracle.com/technology/documentation/bi_ee.html
    http://www.oracle.com/technology/software/products/ias/htdocs/101320bi.html
    http://oraclebi.blogspot.com/

  • Want to send email notification to xelsysadm/OIM superadmin

    Hi,
    I have a requirement, that if the return value of the Flag is true, then send out email notification to OIMsuperadmin which is nothing but xelsysadm. I have written the code till the return flag value, now I want to send out email notification to xelsysadm.
    Please help me with the code.
    Thanks.

    Hi,
    OIM provide a send email utility, you can those API to send email to xelsysadm...
    Regards
    Alabhay Goel

  • Want to send Email Notification to Non-BPM Workspace user?

    I want to send an email notification to non-bpm workspace user. I don't want to do it over the human task because it is an automatic task. Should I use BPEL to send email? Please advise. I am newbie to the BPM & BPEL. And Please give me a link that I can find the step to implement it. Thank you.

    where do you keep your email list, DB or any file or any input attribute in your page?

  • I don't want to send email from @me nor @icloud

    Suddenly my outbound iPad emails default to @me. NOOOOOOO!!!! I don't want to send from anything but my Yahoo. (Not @icloud --- nothing only yahoo.)
    Help me stop it please.

    Go to Settings>>Mail,Contacts,Calendars>>Default Account, then choose for Yahoo.
    Hope it helps

  • Mail doesn't want to send email !

    Hi,
    I"m using OSX Lion and Mail App.
    Normaly everything works good but now when i want to send a message, there is a speedy popup that dissapear and the mail go to draft and NEVER send.
    There is a workaround for that ?
    I made any change on my Mail app i try to understand what's happened.
    The speedy pop up is too fast to read anything on it.
    Thanks for your help.
    Jeremy

    delete the file homedirectory/library/preferences/byhost/com.apple.screensaver....
    and log out/in. set your screensaver preferences again and see if they stick.

  • I want to send email for complain to apple

    i have problem with my i pod nano and bought it from best buy egypt and still i warranty but the dont want to repaire or exchange , i boughtthis device cause nameof brand and cause of quality and good service , please advice
    job card no. 8545
    date of reciving the divce from me 01/08/2012

    OK thanks sir but i installed alredy. i write this code. plz send any error's are there. and i dont know smtp:host name. i put my port address?
    try{
        //Set the host smtp address
        Properties props = new Properties();
        props.put("mail.smtp.host", "//10/0/6/252");
        // create some properties and get the default Session
        Session session = Session.getDefaultInstance(props, null);
         // create a message
        Message msg = new MimeMessage(session);
        // set the from and to address
        msg.setFrom(new InternetAddress("[email protected]"));
         msg.addRecipient(Message.RecipientType.To,new InternetAddress("[email protected]"));
        // Setting the Subject and Content Type
        msg.setSubject("hi..");
        msg.setText("hi bharath how are you");
        Transport.send(msg);
    catch(Exception e)
                  out.println(e);
         }

  • I only want to send emails from mail (not receive)

    I am apprehensive in setting up my Mail because I don't want it to import any emails from my online email account. I don't want all that stuff on my hard drive and I like to access it online from whatever computer.
    Is there a way to set up your email account so that you can only email out, but not receive/download the emails on to your computer?

    Set up your account, have it Enabled, but do not select to have it included when automatically checking for new messages, and also click on Mailbox in the menubar and take the account Offline. In Mail, and Offline account can be used to send, but will not collect new messages. There are a few providers that require you to have at least logged into the serve one time, and authenticated.
    Ernie

  • Distribution list do not appear in TO: field when user wants to send email

    All the blackberry users in the corporate are on BES server. When user enters the first few letters of a person or the # sign and the first few letters for the distribution list in TO: field, the email addresses are showing up from Global Address List (GAL) for example, and they can choose the email address.
    There is a particular issue with one user. His bb does not show any distribution list when he types # sign. The individual contacts from GAL are showing up after typing the first few letters though.
    User has a personal account apart from the corporate account.
    I can not figure out the problem.
    We recently wiped his bb and activated it, because he did not have the option to reply or forward his emails.
    If you know what could be the solution apart from reactivating the bb, please let me know.
    Regards,

    Hello,
    Honestly, from your original description, your users have a function I've never seen. To access the GAL from my BB, I must enter some characters and then use the Lookup function. Your description does not include the Lookup, so I honestly have no idea how your users are configured. From what you describe, it sounds like you are somehow (and for some reason) pushing the entire GAL to each device and this is not working on that one device. But, honestly, with Lookup, I can see no reason to want to push the full GAL out.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I want to send emails to List in my contacts

    I have several lists in my contacts, which I can see when just accessing contacts, but it won't let me 'select all'. then if I go to compose, and call up contacts, it doesn't let me see the lists. and I would like to copy from one email and paste to another, which I think I can use the tabs for but I can't figure out how to just copy and paste the subject.

    Could try to turn iMessage off on each device you've previously had registered, then turn it back on on the device in which phone number you want displayed first.
    I've heard of some people having to reset network settings on the device first too.

  • Cannot send email from sbcglobal account

    Does anyone from Apple take what's discussed here back to a department that is useful in getting bugs fixed? I hope so. I am making this post although I know that NONE of you have an answer to my question that is satisfactory. I will come back to this thread as often as possible in hopes that the next update my finally fix my issue. For the love of all things, I just want to send email via IMAP like this article says I should:
    http://docs.info.apple.com/article.html?artnum=306074
    To be clear for you all, I've set up my sbcglobal account as detailed above...ie, using yahoo. This worked great for me until I applied the 1.0.1 update. Since then, I cannot send an email to save my life. Though receiving has worked just great.
    I am well aware that I can set up my sbcglobal account using pop3/smtp. This is an annoying work around to me, not a solution. If I set it up using pop3, I loose all kinds of ability I had with IMAP. This is a documented feature that is supposed to work on the iPhone, and it doesn't. I see no reason I should have to go back to an older technology/protocol.
    I've submitted multiple comments on the iphone about this. I just pray that someone at Apple fixes this soon. I'm so frustrated, and of course way past my point of returning the dang phone.

    Here's the response I received from Yahoo following the link you posted. As usual, nothing that moves the problem closer to a solution. First, there is an attempt at deflecting the problem by pointing out all the other great services Yahoo offers. Note the operative word "some". That's the whole reason I am writing the note. I already know that "some" of the services are working. I'm wondering about the one that doesn't so this doesn't help. Next comes pass the buck. Go talk to Apple about it. No comment on that one, it speaks for itself. And finally, if none of that works please give me more information. I'll call that reflection. So now its back to me. I think I'll take the ball and go home. For what its worth the response is below:
    I understand that you are having issues with the Yahoo! Mobile service.
    I understand that your sbcglobal.net accounts are not working with the
    IMAP push email option on your mobile device.
    Allow us to inform you that you are able to access some of Yahoo!s most
    popular services on this device - Yahoo! Mail, Yahoo! Address Book,
    Yahoo! Weather, Yahoo! Finance and Yahoo! oneSearch. If you are looking
    for assistance regarding your Yahoo! customizations featured in the
    Apple iPhone widgets, please contact Apple Care at:
    - URL: www.apple.com/support/iphone or
    - Phone: 1-800-MY-IPHONE or
    - go to www.apple.com/iphone for more information.
    However, if you are still encountering an issue with our service. In
    order for us to better understand this issue we will need some
    additional information:
    - The text of any error messages received
    - Exact steps taken that lead up to this event
    If you can describe it in more detail or other pertinent information,
    we'll be happy to help in whatever way we can.
    Thank you again for contacting Yahoo! Mobile Tech Support.
    Regards,
    Timothy
    Yahoo! Mobile Tech Team

  • Send email from OWB with authenticated SMTP server (AUTH_LOGIN)

    Hi all,
    I want to send email from Oracle Warehouse Builder 11.2.0.2 using a SMTP server with basic authentication (AUTH_LOGIN).
    I've created an ACL for OWBSYS user according to note ID 1229769.1 in support.oracle.com.
    But, I need to configure again the ACL to connect to the SMTP server using user and password.
    I read the article in metalink, *How to Send an Email Using SMTP over an SSL Connection [ID 1323140.1]*+
    but I don't know how can I configure again the ACL for use in OWB.
    How OWB is able to authenticate with the SMTP server?
    Thanks!
    Maximiliano.

    Duplicate -
    How to send email from OSB with Mail server that requires SSL or STARTTLS
    Regards,
    Anuj

  • Cannot send email from bigpond account when using overseas telco network

    I am sure this question has been asked and answered before but I cannot find a definitive answer on this forum I am on the Telstra network locally but when I travel to Malaysia I use a local SIM card with data, as the rates are much cheaper than anything Telstra can matchI find I can receive emails on my bigpond email account but cannot send. Can someone from Telstra publish something in this forum or on the general Telstra help pages on what settings to use exactly so that you can send and receive emails from your bigpond account while using another network overseas. I have tried changing the outgoing mail server account to the local network provider's but I am still unable to send Thanks

    Hi Mazzi,
    When travelling overseas you can access your BigPond mailbox through an email program, or via the BigPond Webmailhttp://messaging.bigpond.com/inbox.do or http://webmail.bigpond.com/webedge/do/oldlogin. If you choose to use an email program, some settings will need to be adjusted, as mentioned below.
    While there are no 'perfect' settings which will work every time and from every country, it may as simple as adjusting the Authentication on the outgoing mail server.
    If you are accessing the internet via another Internet Service Provider (ISP), but want to send email through our outgoing mail server using your BigPond email address, then you must activate SMTP authentication. For the purposes of this, think of an 'SMTP (Simple Mail Transfer Protocol) server' as the outbound mail server.
    Make sure that you have adjusted the outgoing port settings as listed below, or configure your mail client so that it uses the service provider's SMTP server, with SMTP Authentication disabled. If you are uncertain on what this is, you can usually search for this online, or alternatively contact the service provider that is providing your internet access.
    If you are uncertain which mail platform you are on, you can confirm this by logging in here.
    The complete list of email settings (including IMAP for Outlook.com accounts) can be found here.
    Should you require immediate assistance while overseas, our BigPond Technical Support Team are available 24 hours, 7 days a week via Live Chat
     

Maybe you are looking for

  • Buying iPod touch – how to find out whether it is a box with FW 1.1.3?

    Hi, does anyone know from which serial number on the iPod touch 16 GB model does come with firmware 1.1.3 or higher from factory? How can I find out whether firmware 1.1.3 is shipped on a sealed iPod touch in retail stores? Want to buy in Germany. Ch

  • Ccms alert auto-reaction writing unix File

    Hello, I configured Automatic Alert Notification in RZ21 to send mail and SMS alerts when alerts are occured in RZ20 (CCMS_OnAlert_Email : frequence dump, lock oracle, process long running ,...) Now I would replace mail/sms Alert notification by writ

  • Page not found in ABAP Workbench

    Hi, I have installed ABAP Development Workbench included in "ABAP Objects" book.  When I do SAP logon and bring up ABAP Development Workbench,  I do not see the Object lists in the object navigator and instead "Page not found" error shows up.  Can an

  • Bonjour website not seen in Mobile Safari

    My own personal iPod (4.2.1) device can't see my website on my devbox machine. As a result I am unable to test my website for mobile on my localnet. The wesite is loaded normally on other machines, including another iPod running the exact same versio

  • DRQ : General Ledger Optional Display of Subtotals Daily ,Monthly, Yearly

    Hi experts, In general ledger reports, in 2nd screen, at present Display Subtotals Daily ,Monthly, Yearly are mark checked by default, If user wishes to unmark the options it takes so much time ... If the same is made optional in the first screen/for