Send Quotation by Email Through Workflow

Hi Gurus
I am trying to setup a workflow to send out the quotation (VA21) to the Sold to Party via Email. The requirement is that when the quotation is saved it should go via email to the ordering party. Specifically the output (printout) of the offer letter should go as an attachment to the Sold to Party when the quotation is saved.
How do I create the task so that it sends the output.??
Thanks and Regards

hi simran,
As ur abapers to create a program to send the output through mail option they will link it to the smpt server and that inturn will trigger the email to be sent to the customer.
Regards,
Sudhir

Similar Messages

  • I'm unable to send and receive email through Apple Mail 4.  I've checked my settings on Preferences, and my password to Gmail is up to date for syncing with IMAP, but it still won't connect.  Suggestions?

    I'm unable to send and receive email through Apple Mail 4.  I've checked my settings on Preferences, and my password to Gmail is up to date for syncing with IMAP, but it still won't connect.  Suggestions?

    I think it's trying to open it in a gMail eMail & is losing your gMail password that it needs log into gMail, but not 100% positive.
    Have you tried Right clicking or Control+click on the eMail link & choose Copy? Works on some, not others.

  • My mail has just crashed I cannot send or receive emails through my mac mail.

    My mail has just crashed I cannot send or receive any emails through my mail app.

    I have also been trying to send very large PDF files today for artwork to be printed.Do you think this might be the problem ?

  • Cannot send or receive emails through hotmail

    I have the Pearl 8110 and I had it set up to receive and send emails through my hotmail and aol accounts. I still can send and receive through aol but not through hotmail
    Solved!
    Go to Solution.

    You probably need to revalidate your hotmail account. I read of some issues a ouple days ago affecting hotmail users. Also many hotmail accounts have to be revalidated every 90 days. CLick on the email setup icon on your BlackBerry and log in to your BIS(BlackBerry Internet Srvice) account. Click on email accounts, see if you need to re-enter your password for your hotmail account.

  • Cannot send or receive email through Verizon server after Thunderbird update

    After updating Thunderbird, Verizon server no longer recognizes my password, so authentication keeps failing. I can neither send nor receive email. Account settings are correct. Any ideas? Thanks.

    Are your server settings set to
    Server pop.verizon.net
    Port 995
    Connection security SSL

  • Cannot send or receive emails through three networ...

    Hi, please help!  Running round in circles!
    Cannot send or recive emails on E71 all of a sudden has stopped working!
    Three network say its not them and Virgin media say its nhot them (email address is blueyonder one).
    Help please?
    How can I take all off phone and restart?

    You probably need to revalidate your hotmail account. I read of some issues a ouple days ago affecting hotmail users. Also many hotmail accounts have to be revalidated every 90 days. CLick on the email setup icon on your BlackBerry and log in to your BIS(BlackBerry Internet Srvice) account. Click on email accounts, see if you need to re-enter your password for your hotmail account.

  • Sending WD component link in email through Workflow

    Hi ,
    I have a Web dynpro component created.The WD application would trigger a Workflow through a Business Object event. In the workflow the user would receive an email on his outlook with the WD component link.
    I have 2 questions:
    1)  How will we send the email to the outlook mail? And the link would be a fairly long string as it is of a WD application.How can we send the link?
    2)  There is 1 more requirement in which there is a inventory number,which is the key field for the WD screen.The person receiving the outlook email with the link will be getting the link as
    eg: http://tcbdci20.xyz.net:8020/sap/bc/webdynpro/xyz/cbb_a4201_invmt?WiNr=4711.
    Here the "WiNr" would be the Inventory number parameter name and "4711" would be the inventory number.This link should directly take the user to the inventory number data filled on the WD screen.
    Is there any way thsis kind of link can be sent and generated?
    Many thanks for your help.
    Regards,
    Ameya Kulkarni

    Hi,
    Please see the below code by which I am able to send link more than 160 charecter.
    *** BEGIN_METHOD SEND_MAIL_TO_USERS CHANGING CONTAINER.
    * Data declaration
    DATA:
          lt_user_IDS type STANDARD TABLE OF SWHACTOR,
          ls_user_IDS type SWHACTOR,
          lt_EMAIL_ADDRESSES TYPE STANDARD TABLE OF ADR6-SMTP_ADDR,
          ls_EMAIL_ADDRESSES  type ADR6-SMTP_ADDR,
          lv_STATUS TYPE CFS_STATUS-STATUS_ID,
          Lv_Object_ID type crmd_orderadm_h-object_id,
          ls_document_data TYPE sodocchgi1,
          lt_text TYPE solisti1 OCCURS 0,
          l_document_data TYPE sodocchgi1,
          lt_receivers TYPE somlreci1 OCCURS 0,
          ls_wa_receive TYPE somlreci1,
          ls_text TYPE solisti1,
          lv_link_title  TYPE char50.
    DATA: lv_link1 TYPE char200 VALUE
    'http://golitsapd39.go-d01.local:8001/sap/bc/gui/sap/its/webgui?sap-',
          lv_link2 TYPE char200 VALUE
    'language=EN&sap-client=850&~transaction=DSWP_SAPSHORTCUT&~OkCode=',
          lv_link3 TYPE char200 VALUE '/08&pcmd=CRMVW&pmsgnum=',
          lv_link  TYPE char200.
    * Get container values
      SWC_GET_table CONTAINER 'User_ids' lt_USER_IDS.
      SWC_GET_table CONTAINER 'Email_addresses' lt_EMAIL_ADDRESSES.
      SWC_GET_ELEMENT CONTAINER 'Status' lv_STATUS.
      SWC_GET_ELEMENT CONTAINER 'Object_ID' lv_Object_ID.
    *=======================================================================
    * Createing final link
    *=======================================================================
    CONCATENATE lv_link1 lv_link2 lv_link3 lv_object_id INTO
                lv_link.
    *=======================================================================
    * createing subject
    *=======================================================================
    Condense  lv_status.
    Translate  lv_status to upper case.
    CASE lv_status.
      WHEN 'NEW'.
        CONCATENATE 'Pls assign Support Msg ' lv_object_id
        INTO ls_document_data-obj_descr SEPARATED BY space.
      WHEN 'AUTHORIZED'.
        CONCATENATE 'CR' lv_object_id 'is autorized'
        INTO ls_document_data-obj_descr SEPARATED BY space.
      WHEN 'CRCREATED'.
        CONCATENATE 'Please authorize' lv_object_id
        INTO ls_document_data-obj_descr SEPARATED BY space.
      WHEN OTHERS.
        CONCATENATE 'Support Msg' lv_object_id
        'is in' lv_status 'status'
        INTO ls_document_data-obj_descr SEPARATED BY space.
    ENDCASE.
    *=======================================================================
    * createing Body
    *=======================================================================
    * Hi
    CLEAR : ls_text.
    ls_text = 'Hi,'.
    APPEND ls_text TO lt_text.
    *Blank Line
    CLEAR : ls_text.
    ls_text = '<br></br>'.
    APPEND ls_text TO lt_text.
    CASE lv_status.
      WHEN 'NEW'.
    *Support Message has been created or reassigned in NEW status.
        CLEAR : ls_text.
        CONCATENATE 'Support Messag' lv_object_id
        'has been created or reassigned to you.'
        INTO ls_text SEPARATED BY space.
        APPEND ls_text TO lt_text.
    *Blank Line
        CLEAR : ls_text.
        ls_text = '<br>'.
        APPEND ls_text TO lt_text.
    *Please raise a CR and waith untill it is aurorized then make the status
    *ASSIGNED to continue further.
        CLEAR : ls_text.
        CONCATENATE
        'Please raise a CR and waith untill it is aurorized then make the'
        'status ASSIGNED to continue further.'
        INTO ls_text SEPARATED BY space.
        APPEND ls_text TO lt_text.
    *Blank Line
        CLEAR : ls_text.
        ls_text = '</br>'.
        APPEND ls_text TO lt_text.
    WHEN 'AUTHORIZED'.
        CLEAR : ls_text.
        CONCATENATE 'CR' lv_object_id 'is authorized.'
        INTO ls_text SEPARATED BY space.
        APPEND ls_text TO lt_text.
    *Blank Line
        CLEAR : ls_text.
        ls_text = '<br>'.
        APPEND ls_text TO lt_text.
    *Please check and make the status of the support message ASSIGNED
    *status to continue further.
        CLEAR : ls_text.
        CONCATENATE 'Please check and make the status of the support'
                    'message ASSIGNED status to continue further.'
        INTO ls_text SEPARATED BY space.
        APPEND ls_text TO lt_text.
    *Blank Line
        CLEAR : ls_text.
        ls_text = '</br>'.
        APPEND ls_text TO lt_text.
    WHEN 'CRCREATED'.
        CLEAR : ls_text.
        CONCATENATE 'CR' lv_object_id 'has been created.'
        INTO ls_text SEPARATED BY space.
        APPEND ls_text TO lt_text.
    *Blank Line
        CLEAR : ls_text.
        ls_text = '<br>'.
        APPEND ls_text TO lt_text.
    *Please check and authorized it.
        CLEAR : ls_text.
        ls_text = 'Please check and authorized it.'.
        APPEND ls_text TO lt_text.
    *Blank Line
        CLEAR : ls_text.
        ls_text = '</br>'.
        APPEND ls_text TO lt_text.
    WHEN OTHERS.
        CLEAR : ls_text.
        CONCATENATE 'Support Message' lv_object_id
        'is in' lv_status 'status now.'
        INTO ls_text SEPARATED BY space.
        APPEND ls_text TO lt_text.
    *Blank Line
        CLEAR : ls_text.
        ls_text = '<br>'.
        APPEND ls_text TO lt_text.
    *Please check and start working as soon as possible.
        CLEAR : ls_text.
        ls_text = 'Please check and start working as soon as possible.'.
        APPEND ls_text TO lt_text.
    *Blank Line
        CLEAR : ls_text.
        ls_text = '</br>'.
        APPEND ls_text TO lt_text.
    ENDCASE.
    *Blank Line
    CLEAR : ls_text.
    ls_text = '</br></br>'.
    APPEND ls_text TO lt_text.
    *Please click the following link to take a action.
    CLEAR : ls_text.
    ls_text = 'Please click the following link to take a action.'.
    APPEND ls_text TO lt_text.
    *inseting link
    CLEAR : ls_text.
    CONCATENATE 'VIEW/EDIT Object' lv_object_id INTO lv_link_title
    SEPARATED BY space.
    CONCATENATE '<A HREF=' lv_link '>'
       INTO ls_text.
    APPEND ls_text TO lt_text.
    CLEAR : ls_text.
    CONCATENATE  '<H5>' lv_link_title '</H5></A>'
    INTO ls_text.
    APPEND ls_text TO lt_text.
    *Blank Line
    CLEAR : ls_text.
    ls_text = '<br></br>'.
    APPEND ls_text TO lt_text.
    *Adding Signature
    *WThanks and regards
    CLEAR : ls_text.
    ls_text = 'Thanks and regards,'.
    APPEND ls_text TO lt_text.
    *Blank Line
    CLEAR : ls_text.
    ls_text = '<br>'.
    APPEND ls_text TO lt_text.
    *WF-Batch
    CLEAR : ls_text.
    ls_text = 'WF-BATCH'.
    APPEND ls_text TO lt_text.
    * Receiver
    Loop at lt_user_IDS into ls_user_IDS.
    ls_wa_receive-rec_type = 'G'.        "SAP User
    ls_wa_receive-receiver = ls_user_IDS. "Mail Address
    APPEND ls_wa_receive TO lt_receivers.
    Endloop.
    Loop at lt_EMAIL_ADDRESSES into ls_EMAIL_ADDRESSES.
    ls_wa_receive-rec_type = 'U'. "Internet User
    ls_wa_receive-receiver = ls_EMAIL_ADDRESSES. "Mail Address
    APPEND ls_wa_receive TO lt_receivers.
    Endloop.
    *This function module is used to send mail
    CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
      EXPORTING
        document_data              = ls_document_data
        document_type              = 'HTM'
        put_in_outbox              = 'X'
        commit_work                = 'X'
      TABLES
        object_content             = lt_text
        receivers                  = lt_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.
    *If Mail Send Successful
    IF sy-subrc EQ 0.
      COMMIT WORK.
    *   Push mail out from SAP outbox
      SUBMIT rsconn01 WITH mode = 'INT' AND RETURN.          "#EC CI_SUBMIT
    ENDIF.
    END_METHOD. ***
    Thanks and regards,
    SNJY

  • Having problemn in sending a report email through forms

    Hi ALL,
    I am trying to send an email a report through forms
    It works for me in client side
    I am just passing parameters and working fine in Client side
    I am using forms 6i,reports6i and Oracle 8i
    If i run the same form in web it is not doing anything
    Any help
    The code is below
    PROCEDURE send_report (name varchar2) IS
    rpt_id REPORT_OBJECT := find_report_object('GENERIC');
    v_rep VARCHAR2(100);
    rep_status varchar2(20);
    errcode number;
    RPT_DES VARCHAR2(200) := '[email protected],[email protected]';
    BEGIN
    SET_REPORT_OBJECT_PROPERTY(rpt_id,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY (rpt_id,REPORT_DESTYPE,MAIL);
    SET_REPORT_OBJECT_PROPERTY (rpt_id,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY (rpt_id,REPORT_DESNAME,RPT_DES);
    SET_REPORT_OBJECT_PROPERTY (rpt_id,REPORT_FILENAME,name||'.rep');
    v_rep := RUN_REPORT_OBJECT(rpt_id);
    do_key('clear_form');
    EXCEPTION
    when form_trigger_failure then null;
    END;

    Hi,
    on the Web you need to configure the Reports Server for sending emails, not the runtime.
    Frank

  • How can I send SMS from email through iMS5.2

    there is a way for sending SMS through iMS5.2 but i do not know how?Is there any need for SMPP server or any gateway for sending SMS.I know about the rewrite rule to be include in imta.cnf file but I want to know the steps for configuring the iMS5.2 for sending SMS.is there any SMPP server(SMSC) that needs to be separately installed

    IMS 5.2 supports one way SMS, however, you must have access to the SMSC's SMPP server. The server must support SMPP V3.4 over TCP/IP and there must be TCP/IP connectivity between the host running iMS and the SMPP server.
    You also have to configure a SMS channel in iMS, then it is merely a matter of sending a mail message to the address associated with that channel.
    The documentation for how to do that can be found at http://docs.iplanet.com/docs/manuals/messaging/technotes/5.2sms.html which is reached from the "related links" at the bottom of the messaging documentation web site http://docs.iplanet.com/docs/manuals/messaging.html#related, and then select "Technical Notes and Examples". Note SMS is supported, the doc just didn't make it into the regular set.

  • How do I use Thunderbird to send third-party email through Verizon SMTP?

    What exact settings do I need to select in Thunderbird for outgoing email in order send email? I have a third-party email address, not Yahoo or Verizon.
    Based on other posts, I have set:
    server name: outgoing.verizon.net
    port: 587
    CHECKED 'use name and password'
    username: entered verizon username
    use secure connection: 'no'
    When I try to send email, I get prompted for password multiple times, then ultimately get "Send Message Error" - 'Sending of message failed. The message could not be sent because connecting to SMTP server outgoing.verizon.net failed...'

    Your verizon.net password is not necessarily the same as your .com password. I have downloaded Thunderbird and tested send/receive using the verizon.net outgoing server and it works just fine, so it is something in the settings you are using.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.
    "All knowledge is worth having."

  • Send error logs email through SAP workplace

    Hi,
    I need to send 4 different error log files to a unique user's email using SAP workplace, from my program. Plz provide a solution.
    Thanks.

    Hi,
    I need to send 4 different error log files to a unique user's email using SAP workplace, from my program. Plz provide a solution.
    Thanks.

  • How to send notification to email through report programme?

    I am do not have idea how to do it please help me.

    Hi Abbu,
    try this code, that may help u.
    Sending mail with attachment using Object Oriented Approach - Code Gallery - SCN Wiki

  • How to send E-Mail Notification executing through workflow?

    hi All
    I want to send E-Mail Notification executing through workflow in MDM Data Manager?
    I have tried it, But still i am unable to send E-Mail Notification?
    i will explain, how i have tried?
    1) I have created the simple workflow with the following components
        they are in sequence
          start--> process-> notify--->stop
    2)  owner of the workflow is Admin and launcher of the workflow is Admin and i have given email id to the Default Admin user in the console.
    3) i have created another user (i.e. User2) with default roles as like as Admin and i have assigned User2 to the process component in workflow and I have created e-mail address for the User2 in the console.
    4) i have created another user(i.e.User1) with default roles as like as Admin. and give e-mail address,under the notify component User1 is selected in To Field.
    5) stop component as usual
    coming to configuration part about the SMPT server in MDS.ini file
    1) in mds.ini file for the MailServer=, I have given SMTP Server name once and restarted the server and executed the workflow, but not worked
    2)in mds.ini file for the MailServer=, i have given SMTP Server IP Address and checked the port,and we have configured the host file also and restarted the server and executed the worflow , but not worked
    In all the ways i have executed and tried to send E-Mail Notifications through workflow, But I didn't
    can any one help where i have went wrong, so i can rectify  it
    what actually we have to give in mds.ini file? is any other cofiguration required for it?
    if any one have any solution for it , can you please explain me in step by step
    Thanks in Advance
    bharat.chinthapatla

    Hi Bharat,
    your steps seems to be correct. Just try to ping your mail server, to verify if your mail server is running up, besides note that mdm go throw port 25 for sending emails, so please check if you are able to send emails using port 25 in your network.
    Regards,
    Vito

  • Outlook 2010: why can't I send or receive email?

    Cannot send or receive email through Outlook 2010
    Running MS Office 2010 Professional Plus on a Dell N5010 w. Intel Core 13 proc. and 4 GB RAM.
    Recently discovered my "sent" mail was not being received. I found it all unsent in the "Outbox." A few days later, I stopped receiving email through Outlook. the Outlook ikon: click on it; the ikon shows box w. red X, annotation "working
    offline."
    How do I restore full functionality of Outlook?

    Hi,
    Which type of email account are you using? POP3, IMAP or Exchange?
    Please open your Outlook and click on Send/Receive
    tab, check if the Work Offline button is highlighted. If so click the button to deactivate it. Then, restart Outlook to check the result.
    If Outlook was still stuck in Offline mode, please try to log into your webmail and check if you can send and receive emails using that site. If you can't, please contact your email service provider for help.
    If you can get and send mail on the website, the mail server’s fine. Please try to install all patches for your Outlook. We can also try to create a new mail profile in Control Panel and configure your email account in the new mail profile to check if it
    helps. To do this, please refer:
    http://support.microsoft.com/kb/829918/en-us
    Hope this helps.
    Best Regards,
    Steve Fan
    TechNet Community Support

  • Cannot send or receive emails when connected to roaming wifi

    Recently I was traveling and stopped in a Starbucks for a coffee and to send some important emails from my MacBook Pro. I signed into the local AT&T WiFi but was unable to send or receive emails through my MobileMe accounts. I checked all the Airport and network settings and cannot figure out why it wouldn't work. Any ideas or solutions?

    Yes. I also tried my Cox account with no success. It would seem to me that MobileMe or another internet based account like Yahoo or Gmail would work, but Cox would require changing the POP and SMTP settings. I would think MobileMe would just work given that it is an IMAP account.

Maybe you are looking for

  • Printing Questions - "Poster" - One image on multiple sheet of paper (to create an enlargement)

    Hello, Tried to find this in the archives - apologies if this has already been answered. Kindly reply with that link and I won't ask you to chew your cabbage twice... On my older PC, I used to be able to print an image in "poster" mode, which essenti

  • How can I open different binary files from BLOB column ?

    If we store some type of binary file (XLS, DOC, PDF, EML and so on, not only pictures) in BLOB column how can I show the different contents? We use designer and forms 9i with PL/SQL. How can I copy the files from BLOB to file in a directory or how ca

  • Questions about IDoc to file scenario

    I 'm confused, and have a few questions: 1, we need to define a product for it at least  , assign it to either of the systems? 2, we don't have to configure an IDoc communication channel, do we? 3, does the receiver system (file/ftp) need a logical s

  • CSA 5.1 printing issue

    I have a problem with CsA and Print screen, If the workstation is in test mode print screen, alt print screen works fine. However when the same machine is in enforcement mode the user is unable to use this function. Even worse there are no logs gener

  • SP's Patches Applied to R/3

    Hi Gurus, I was wondering, how I will know what changes were affected if a certain SP is applied in R/3 or in BW systems. For ex: "SAP Kernel 6.40 patch 196", "SAP_OCS 6.20 patch 23" and "SAP_BASIS 6.20 patches 61-63". How will I know what upgraded a