BASIS Configuration needed to send an external mail from SAP Program

Can you please help me about the BASIS configuration needed to send an external mail from SAP Program?
Regards,
Subhasish

Hi Subhasish,
Please go thru the below link.
Re: SCOT Configuration--for external mail
Regards,
Lakshman.

Similar Messages

  • How to send an external mail from workflow.

    Hi,
    I have created a send mail in my workflow but it isnot sending the external mail
    Any guesses?

    Check the status in SOST . If not ask ur BASIS guys to work on SCOT.
    Richard A

  • Send External Mail from SAP

    Hi all,
    I have one ALV-report which has 64 columns.
    Now i want to send this report to external mail.
    I have already created a program for this but the problem is that my report contains 64 columns but only 30 columns is sending to external mail remaining data is not generating in excel sheet.

    first check o/p in spool t.code sp02
    o/p is having 64 columns or 30.

  • How to set Default text when sending a blank mail from SAP

    Hi all,
    How to add Signature with company logo in the mail body.
    User should see at least one default text (eg; Hi) in the mail body if the sender did not type any text in the mail body when sending a mail from SAP.
    Is it possible to set like this on Subject also.
    Kindly share your ideas.
    Regards,
    Mathan A

    Hi Mathan,
    Please check sap note
    SAP Note No. 1304146 Email Signatures feature note
    1163250 - How to Create an Email Signature on several rows
    I hope it will solve your issue.PLease mark thread as answerd.
    Best Regards,
    Atul

  • External Mail from SAP worflow

    We are using the standard SAP PO(BUS2012) workflow, which is activated when the PO release is to be effected.
    I am getting my mails in SAP inbox as desired. Now I want to send this same mail to an external email .  I donot want any background job to do it .. rather i want that whenever the SAP mail is generated also at the same time the external mail is also generated. Could any body help me to configure the same?
    Regards

    Hi Dipak,
    You can also use the approach in below links:
    Re: Send notification to E-Mail id
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/abap/send%252ban%252bexternal%252bmail%252b%252bthrough%252bsap%252bbusiness%252bworkflow%252band%252brecievers%252baddress%252bin%252bcc
    Hope this helps!
    Regards,
    Saumya

  • External mail from SAP

    Hi ABAPers,
    My program is trying to send external mail using FM SO_NEW_DOCUMENT_ATT_SEND_API1.
    I suppose there is some amount of customizing also involved in txn SCOT,in case any one has an idea about the same, please share the info across.
    Thanks in advance.

    Hi Tarun,
    Check the following link:-
    /people/thomas.jung3/blog/2004/09/08/sending-e-mail-from-abap--version-610-and-higher--bcs-interface
    http://help.sap.com/saphelp_nw04/helpdata/en/2b/d925bf4b8a11d1894c0000e8323c4f/frameset.htm
    these link will help u to config SCOT.
    And one more thing u have to do..
    Go to SE11 n open Table sxnodes in change mode.
    And change F_ESMTP field to false i.e. BLANK for the Field NODE = SMTP.\
    OR problem might me 1 of these as under:-
    1. In the exporting parameters of..FM use
    commit_work = 'X'.
    2. Check for Sy-subrc of FM..
    if sy-subrc = 0.
    SUBMIT rsconn01
    WITH mode EQ 'INT'
    AND RETURN.
    this report program is used to automatically send the e-mails that are pending in the job queue in SCOT or SOST.
    Hope this will work For U.
    Regards
    Sachin Dhingra

  • Need to send data as files from SAP to other systems.

    I need some code which will be useful to me. I fetched data from sap to internal tables. Now, the data needs to be sent to other systems (Informatica or so..) as files. Pl. anyone send me a sample code which i can use in my program.
    I will try to reward points to people who will be able to help me.

    Hi, Pl. find the required code which might be useful for ur question.
    Get the data for Userid(l_user) & password(l_pwd) & host string(l_host).
    DATA: l_slen     TYPE i,
          l_error,
          l_pwd(30)  TYPE c.
    CONSTANTS: c_dest TYPE rfcdes-rfcdest VALUE 'SAPFTP',
               c_key  TYPE i              VALUE 26101957.
    connect to ftp server
      l_slen = STRLEN( l_pwd ).
      CALL FUNCTION 'HTTP_SCRAMBLE'
        EXPORTING
          SOURCE      = l_pwd
          sourcelen   = l_slen
          key         = c_key
        IMPORTING
          destination = l_pwd.
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
        EXPORTING
          text = 'Connect to FTP Server'.
    To Connect to the Server using FTP
      CALL FUNCTION 'FTP_CONNECT'
        EXPORTING
          user            = l_user
          password        = l_pwd
          host            = l_host
          rfc_destination = c_dest
        IMPORTING
          handle          = w_hdl
        EXCEPTIONS
          OTHERS          = 1.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Get the path to which the data file needs to be moved (w_outfile).
      PERFORM download_to_ftp TABLES it_coacode USING w_outfile.
    FORM download_to_ftp TABLES it_tab
                         USING l_string TYPE char64.
      CALL FUNCTION 'FTP_R3_TO_SERVER'
        EXPORTING
          handle         = w_hdl
          fname          = l_string
          character_mode = 'X'
        TABLES
          text           = it_tab[]
        EXCEPTIONS
          tcpip_error    = 1
          command_error  = 2
          data_error     = 3
          OTHERS         = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
                RAISING invalid_output_file.
      ENDIF.
    ENDFORM.                    " download_to_ftp
    Pl. award points if it has solved ur problem.

  • Sending an e-mail from SAP to multiple e-mail IDs

    I have a requirement where SAP should send e-mail to the main recipient and CC to three other recipients. The e-mail will have a PDF attachment of delivery document and the e-mail Ids are fetched from ''Storage Location'' definition maintained in customization under SPRO --> Enterprise Structure --> Definition --> Materials Management --> Maintain Storage Location. I can maintain multiple e-mail Ids here.
    However, as standard, SAP will set the indicator (or I can define) to one specific e-mail ID only and will send e-mail just to that e-mail ID.The requirement is that the e-mail Id with the indicator will be the main recipient, and all other e-mail Ids should be CCed.
    Can anyone advise how to go about this? Any OSS notes or any clue on ABAP devpt work please...
    Many Thanks in Advance
    Ravi.

    Hi
    You can have the PDFs kept in a spool. From the spool, you can send these documents through email by using the FM
    CONVERT_OTFSPOOLJOB_2_PDF
    You can also use the FM PLM_AUDIT_COM_SEND_PDF_AS_MAIL
    to create a new FM for your purpose.
    Rwd if it helps.
    Message was edited by:
            Navaneetha Krishnan

  • Problem sending externail mail from SAP

    I am facing problem in sending external mail from SAP. for ex: yahoo, hotmail like that. But, i can able to send the mails to my domain ids. I have configured both the SMTP and SAP internet gateway to send mails.
    But, i dont know what could be the problem in sending external mails.
    Is there any body to help me in this regard
    Regards,
    B.Sudharsan

    Hi Sudarsan,
    How are you trying to send an e-mail using ABAP or using actions or ?
    Enclosed link gives you a complete overview of the settings and the way to send an e-mail using ABAP ( if necessary).
    /people/thomas.jung3/blog/2004/09/08/sending-e-mail-from-abap--version-610-and-higher--bcs-interface
    Reward points if it helps.
    Regards,
    Vamsi Krishna P.

  • What's wrong with my Apple Mail?! It only retrieves e-mails once I send an e-mail from the account concerned!

    Well, that's it really. I need to send an e-mail from an account for apple mail to retrive new incoming mail.
    This has started happening since I upgraded to Mavericks. It's very temperamental. Some days it needs massaging to get my mail (as per above), other days it works like a well-oiled machine.
    Any thoughts anyone?

    If no one replies here try the Java Mail Forum:
    http://forum.java.sun.com/forum.jspa?forumID=43

  • Encrypted mail from SAP

    Dear All,
    Please let me know is it possible to send the encrypted mail from SAP as well as the procedure to do?
    Best Regards
    Vikas

    Did you check the Note provided by Mike? Your query has been described there very clearly. Please check the description in the content of the note and let us know the part which is confusing to you.
    regards,
    Dipanjan

  • XI Alert cannot send through external mail id ?

    Hi,
    I have configured XI Alert to monitoring Adapter Engine, The Alert is triggert and i can see in my Alert In_box in RWB.
    But then how to configure the alert send using external id
    I have configured SCOT as well, but i can't see anything from SOST ?
    Please advise any other possibility than i need to check ?
    Thank You in Advance.
    FL.
    Edited by: Fernad Lesmana on May 1, 2011 6:33 AM

    Hi Fernad,
    Assign the mail id of the recipeint of the alert in Su01
    Go to the alert inbox of the recipient , in the option / link --> personalization --> Time Independent Delivery --> select EMAIL.
    If scot is configured for every alert, the mail will be forwarder to the recipient  mail id allocated in SU01
    also try out this,
    Goto SCOT. Inside  node int (Internet), u will find another node*/SMTP.
    Try to Configure the SMTP node.  Goto Node SMTP and select Node in use checkbox.
    Now, in  SMTP Connection  -->Mail Host <specify hostname of mailserver> and Mail Port <Specify the mail port, most probably 25> and Codepage <You can select code page >
    Internet will be automatically selected, double click  on set beside internet
    in address area specify '*' so that anyone  can be sent mail
    schedule backgroud job for mails  to go out of SMTP Plugin of ICF.
    chk the link for alert configuration :-
    http://help.sap.com/saphelp_nw04/helpdata/en/b2/de0741375cf16fe10000000a1550b0/frameset.htm
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step
    Regards
    rohit

  • Sending Mail from SAP to External Source

    Hi Experts,
    We are on ECC 6.0. I have configured the standard SAP system for
    sending mails from within SAP to our company mail server. The
    mails from SAP are going successfully to our official company
    ids, But when i am trying to send mails to outside address like
    eg. " email@removed " or " email@removed ", it is not going and
    giving an error recipient unknown.
    The configuration of SAPConnect is correct because mails are
    going successfully to our company id, to send outside do i need
    to do something extra???

    It's Mail Relaying and it allows a mail server to send email (or relay it) on behalf of other systems. Many companies have relaying turned off because it is a security risk.
    For example, allowing relaying will allow your system to send an email from xxx.com though your email server which manages emails for company.com. This could be used by a rogue to send spam through your email server.
    Also, if you try to send an email from an account that your mail server does not handle some receiving servers may assume it is spam and block it.
    For this reason, only allow mail relaying on the email server for your domain and only from the SAP systems. This will prevent abuse from occuring because relaying is enabled.
    Have you set the default domain for SAPconnect:
    [http://help.sap.com/saphelp_nw04/helpdata/EN/00/7c9962df8111d3a36400a0c943858e/content.htm]
    Microsoft note on SMTP Relaying:
    [http://support.microsoft.com/kb/304897]

  • Creation of transport rule to send all external mails through a particular server for a specific user..

    HI,
    In our Organisation We have a question, is there any possibility to create a transport rule for sending all external mails through a particular server by a specific user.
    in our organisation we have exchange 2007 one mailbox server and two hub transport servers...and we are using symantic gate way..

    Hi,
    Based on my knowledge, we can use the following transport rule to make that except with one user, other users cannot send outbound external emails:
    And I’m afraid that there is no Exchange feature to make one specific HUB server rout all external emails.
    Because if a Send connector is configured to send messages to an external domain, any Hub Transport server in the organization will route a message for that domain to a source server for that connector to be relayed to the destination domain.
    If you have any question, please feel free to let me know.
    Thanks,
    Angela Shi
    TechNet Community Support

  • Hi ! I need to send an e.mail reporting a problem with de Authorized Service Provider in Brasil. I contact Apple Brasil, but didn't solve. Someone know an Apple's USA e.mail i can use ? Thanks.

    Hi ! I need to send an e.mail reporting a problem with de Authorized Service Provider in Brasil. I contact Apple Brasil, but didn't solve. Someone know an Apple's USA e.mail i can use ? Thanks.

    There is a link at the bottom of this page. http://www.apple.com/contact/

Maybe you are looking for