<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Send email in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493306#M1063414</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rohit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should automatically refreshed all SEND RECIEVE process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why you don't ask your Basis person?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Sep 2008 07:07:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-19T07:07:54Z</dc:date>
    <item>
      <title>Send email</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493292#M1063400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a report to display data in ALV grid display...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i want to send this report thru email....to other person&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any one suggest me...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2008 08:01:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493292#M1063400</guid>
      <dc:creator>RahulKeshav</dc:creator>
      <dc:date>2008-09-18T08:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: Send email</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493293#M1063401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohit,&lt;/P&gt;&lt;P&gt; if you dont have issues with ALV output length more than 255 columns then use this FM &lt;/P&gt;&lt;P&gt;SO_NEW_DOCUMENT_ATT_SEND_API1 and send the report as attachment to mail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sudharshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2008 08:05:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493293#M1063401</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-18T08:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: Send email</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493294#M1063402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No Need to work that much just from report output screen&amp;gt;system&amp;gt;list&amp;gt;send&amp;gt;give recp address and recp type as internet user&amp;gt;send(Shift+F8).&lt;/P&gt;&lt;P&gt;if you are using alv&amp;gt;list&amp;gt;send to&amp;gt;reast same procedure as above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2008 08:10:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493294#M1063402</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-18T08:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: Send email</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493295#M1063403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just use function module: &lt;STRONG&gt;SO_NEW_DOCUMENT_ATT_SEND_API1&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and sample code for sending internal table data through mail is given below it will help you:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I had to do away with my earlier method of writing the data to spool, instead i exported the data to memory using the FM LIST_FROM_MEMORY. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'LIST_FROM_MEMORY'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;listobject = t_listobject&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;not_found = 1&lt;/P&gt;&lt;P&gt;OTHERS = 2.&lt;/P&gt;&lt;P&gt;IF sy-subrc 0.&lt;/P&gt;&lt;P&gt;MESSAGE e000(su) WITH text-001.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then i converted it into ASCII using LIST_TO_ASCI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'LIST_TO_ASCI'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;listasci = t_xlstab&lt;/P&gt;&lt;P&gt;listobject = t_listobject&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;empty_list = 1&lt;/P&gt;&lt;P&gt;list_index_invalid = 2&lt;/P&gt;&lt;P&gt;OTHERS = 3.&lt;/P&gt;&lt;P&gt;IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;MESSAGE e003(yuksdbfzs).&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This gives the data in ASCII format separated by '|' and the header has '-', dashes. If you use this internal table directly without any proccesing in &lt;STRONG&gt;SO_NEW_DOCUMENT_ATT_SEND_API1&lt;/STRONG&gt;, then you will not get a good excel sheet attachment. To overcome this limitation, i used cl_abap_char_utilities=&amp;gt;newline and cl_abap_char_utilities=&amp;gt;horizontal_tab to add horizontal and vertical tabs to the internal table, replacing all occurences of '|' with &lt;/P&gt;&lt;P&gt;cl_abap_char_utilities=&amp;gt;horizontal_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set the doc_type as 'XLS', create the body and header using the packing_list and pass the data to be downloaded to SO_NEW_DOCUMENT_ATT_SEND_API1 as contents_bin.&lt;/P&gt;&lt;P&gt;This will create an excel attachment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample code for formatting the data for the attachment in excel format.&lt;/P&gt;&lt;P&gt;u2022	Format the data for excel file download &lt;/P&gt;&lt;P&gt;LOOP AT t_xlstab INTO wa_xlstab .&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE t_xlstab LINES lw_cnt.&lt;/P&gt;&lt;P&gt;CLEAR lw_sytabix.&lt;/P&gt;&lt;P&gt;lw_sytabix = sy-tabix.&lt;/P&gt;&lt;P&gt;u2022	If not new line then replace '|' by tabs &lt;/P&gt;&lt;P&gt;IF NOT wa_xlstab EQ cl_abap_char_utilities=&amp;gt;newline.&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURRENCES OF '|' IN wa_xlstab&lt;/P&gt;&lt;P&gt;WITH cl_abap_char_utilities=&amp;gt;horizontal_tab.&lt;/P&gt;&lt;P&gt;MODIFY t_xlstab FROM wa_xlstab .&lt;/P&gt;&lt;P&gt;CLEAR wa_xlstab.&lt;/P&gt;&lt;P&gt;wa_xlstab = cl_abap_char_utilities=&amp;gt;newline.&lt;/P&gt;&lt;P&gt;IF lw_cnt NE 0 .&lt;/P&gt;&lt;P&gt;lw_sytabix = lw_sytabix + 1.&lt;/P&gt;&lt;P&gt;u2022	Insert new line for the excel data &lt;/P&gt;&lt;P&gt;INSERT wa_xlstab INTO t_xlstab INDEX lw_sytabix.&lt;/P&gt;&lt;P&gt;lw_cnt = lw_cnt - 1.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;CLEAR wa_xlstab.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;Sample code for creating attachment and sending mail:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM send_mail .&lt;/P&gt;&lt;P&gt;u2022	Define the attachment format &lt;/P&gt;&lt;P&gt;lw_doc_type = 'XLS'.&lt;/P&gt;&lt;P&gt;u2022	Create the document which is to be sent &lt;/P&gt;&lt;P&gt;lwa_doc_chng-obj_name = 'List'.&lt;/P&gt;&lt;P&gt;lwa_doc_chng-obj_descr = w_subject. "Subject&lt;/P&gt;&lt;P&gt;lwa_doc_chng-obj_langu = sy-langu.&lt;/P&gt;&lt;P&gt;u2022	Fill the document data and get size of message &lt;/P&gt;&lt;P&gt;LOOP AT t_message.&lt;/P&gt;&lt;P&gt;lt_objtxt = t_message-line.&lt;/P&gt;&lt;P&gt;APPEND lt_objtxt.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE lt_objtxt LINES lw_tab_lines.&lt;/P&gt;&lt;P&gt;IF lw_tab_lines GT 0.&lt;/P&gt;&lt;P&gt;READ TABLE lt_objtxt INDEX lw_tab_lines.&lt;/P&gt;&lt;P&gt;lwa_doc_chng-doc_size = ( lw_tab_lines - 1 ) * 255 + STRLEN( lt_objtxt ).&lt;/P&gt;&lt;P&gt;lwa_doc_chng-obj_langu = sy-langu.&lt;/P&gt;&lt;P&gt;lwa_doc_chng-sensitivty = 'F'.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;lwa_doc_chng-doc_size = 0.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;u2022	Fill Packing List For the body of e-mail &lt;/P&gt;&lt;P&gt;lt_packing_list-head_start = 1.&lt;/P&gt;&lt;P&gt;lt_packing_list-head_num = 0.&lt;/P&gt;&lt;P&gt;lt_packing_list-body_start = 1.&lt;/P&gt;&lt;P&gt;lt_packing_list-body_num = lw_tab_lines.&lt;/P&gt;&lt;P&gt;lt_packing_list-doc_type = 'RAW'.&lt;/P&gt;&lt;P&gt;APPEND lt_packing_list.&lt;/P&gt;&lt;P&gt;u2022	Create the attachment (the list itself) &lt;/P&gt;&lt;P&gt;DESCRIBE TABLE t_xlstab LINES lw_tab_lines.&lt;/P&gt;&lt;P&gt;u2022	Fill the fields of the packing_list for creating the attachment: &lt;/P&gt;&lt;P&gt;lt_packing_list-transf_bin = 'X'.&lt;/P&gt;&lt;P&gt;lt_packing_list-head_start = 1.&lt;/P&gt;&lt;P&gt;lt_packing_list-head_num = 0.&lt;/P&gt;&lt;P&gt;lt_packing_list-body_start = 1.&lt;/P&gt;&lt;P&gt;lt_packing_list-body_num = lw_tab_lines.&lt;/P&gt;&lt;P&gt;lt_packing_list-doc_type = lw_doc_type.&lt;/P&gt;&lt;P&gt;lt_packing_list-obj_name = 'Attach'.&lt;/P&gt;&lt;P&gt;lt_packing_list-obj_descr = w_docdesc.&lt;/P&gt;&lt;P&gt;lt_packing_list-doc_size = lw_tab_lines * 255.&lt;/P&gt;&lt;P&gt;APPEND lt_packing_list.&lt;/P&gt;&lt;P&gt;u2022	Fill the mail recipient list &lt;/P&gt;&lt;P&gt;lt_reclist-rec_type = 'U'.&lt;/P&gt;&lt;P&gt;LOOP AT t_recipient_list.&lt;/P&gt;&lt;P&gt;lt_reclist-receiver = t_recipient_list-address.&lt;/P&gt;&lt;P&gt;APPEND lt_reclist.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;u2022	Finally send E-Mail &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION &lt;STRONG&gt;'SO_NEW_DOCUMENT_ATT_SEND_API1'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;document_data = lwa_doc_chng&lt;/P&gt;&lt;P&gt;put_in_outbox = 'X'&lt;/P&gt;&lt;P&gt;commit_work = 'X'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;sent_to_all = lw_sent_to_all&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;packing_list = lt_packing_list&lt;/P&gt;&lt;P&gt;object_header = lt_objhead&lt;/P&gt;&lt;P&gt;contents_bin = t_xlstab&lt;/P&gt;&lt;P&gt;contents_txt = lt_objtxt&lt;/P&gt;&lt;P&gt;receivers = lt_reclist&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;too_many_receivers = 1&lt;/P&gt;&lt;P&gt;document_not_sent = 2&lt;/P&gt;&lt;P&gt;document_type_not_exist = 3&lt;/P&gt;&lt;P&gt;operation_no_authorization = 4&lt;/P&gt;&lt;P&gt;parameter_error = 5&lt;/P&gt;&lt;P&gt;x_error = 6&lt;/P&gt;&lt;P&gt;enqueue_error = 7&lt;/P&gt;&lt;P&gt;OTHERS = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rahul sharma&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: RAHUL SHARMA on Sep 18, 2008 10:12 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2008 08:11:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493295#M1063403</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-18T08:11:35Z</dc:date>
    </item>
    <item>
      <title>Re: Send email</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493296#M1063404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;here the code I've used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form build_xls_data_table.&lt;/P&gt;&lt;P&gt;*CONSTANTS: con_cret TYPE x VALUE '0D', "OK for non Unicode&lt;/P&gt;&lt;P&gt;*con_tab TYPE x VALUE '09'. "OK for non Unicode&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*If you have Unicode check active in program attributes thnen you will&lt;/P&gt;&lt;P&gt;*need to declare constants as follows&lt;/P&gt;&lt;P&gt;*class cl_abap_char_utilities definition load.&lt;/P&gt;&lt;P&gt;  constants:&lt;/P&gt;&lt;P&gt;  con_tab type c value cl_abap_char_utilities=&amp;gt;horizontal_tab,&lt;/P&gt;&lt;P&gt;  con_cret type c value cl_abap_char_utilities=&amp;gt;cr_lf.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  concatenate&lt;/P&gt;&lt;P&gt;  'Voce P&amp;amp;L'&lt;/P&gt;&lt;P&gt;  'IDLAccount'&lt;/P&gt;&lt;P&gt;  'Descrizione'&lt;/P&gt;&lt;P&gt;  'Importo'&lt;/P&gt;&lt;P&gt;  space&lt;/P&gt;&lt;P&gt;    into it_attach separated by con_tab.&lt;/P&gt;&lt;P&gt;  concatenate con_cret it_attach into it_attach.&lt;/P&gt;&lt;P&gt;  append it_attach.&lt;/P&gt;&lt;P&gt;  clear it_attach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at tb_total.&lt;/P&gt;&lt;P&gt;    write tb_total-wkgbtr to importo.&lt;/P&gt;&lt;P&gt;    concatenate&lt;/P&gt;&lt;P&gt;    tb_total-pl_item&lt;/P&gt;&lt;P&gt;    tb_total-idlaccount&lt;/P&gt;&lt;P&gt;    tb_total-description&lt;/P&gt;&lt;P&gt;    importo&lt;/P&gt;&lt;P&gt;    space&lt;/P&gt;&lt;P&gt;    into it_attach separated by con_tab.&lt;/P&gt;&lt;P&gt;    concatenate con_cret it_attach into it_attach.&lt;/P&gt;&lt;P&gt;    append it_attach.&lt;/P&gt;&lt;P&gt;    "Note below tow lines....&lt;/P&gt;&lt;P&gt;    clear it_attach. "clear ini line&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform. " BUILD_XLS_DATA_TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;amp; Form SEND_FILE_AS_EMAIL_ATTACHMENT&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;send email&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;form send_file_as_email_attachment tables pit_message&lt;/P&gt;&lt;P&gt;pit_attach&lt;/P&gt;&lt;P&gt;using&lt;/P&gt;&lt;P&gt;p_mtitle&lt;/P&gt;&lt;P&gt;p_format&lt;/P&gt;&lt;P&gt;p_filename&lt;/P&gt;&lt;P&gt;p_attdescription&lt;/P&gt;&lt;P&gt;p_sender_address&lt;/P&gt;&lt;P&gt;p_sender_addres_type&lt;/P&gt;&lt;P&gt;changing p_error&lt;/P&gt;&lt;P&gt;p_reciever.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: ld_error type sy-subrc,&lt;/P&gt;&lt;P&gt;  ld_reciever type sy-subrc,&lt;/P&gt;&lt;P&gt;  ld_mtitle like sodocchgi1-obj_descr,&lt;/P&gt;&lt;P&gt;  ld_email like somlreci1-receiver,&lt;/P&gt;&lt;P&gt;  ld_format type so_obj_tp ,&lt;/P&gt;&lt;P&gt;  ld_attdescription type so_obj_nam ,&lt;/P&gt;&lt;P&gt;  ld_attfilename type so_obj_des ,&lt;/P&gt;&lt;P&gt;  ld_sender_address like soextreci1-receiver,&lt;/P&gt;&lt;P&gt;  ld_sender_address_type like soextreci1-adr_typ,&lt;/P&gt;&lt;P&gt;  ld_receiver like sy-subrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ld_mtitle = p_mtitle.&lt;/P&gt;&lt;P&gt;  ld_format = p_format.&lt;/P&gt;&lt;P&gt;  ld_attdescription = p_attdescription.&lt;/P&gt;&lt;P&gt;  ld_attfilename = p_filename.&lt;/P&gt;&lt;P&gt;  ld_sender_address = p_sender_address.&lt;/P&gt;&lt;P&gt;  ld_sender_address_type = p_sender_addres_type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;fill the document data.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  w_doc_data-doc_size = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;populate the subject/generic message attributes&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  w_doc_data-obj_langu = sy-langu.&lt;/P&gt;&lt;P&gt;  w_doc_data-obj_name = 'SAPRPT'.&lt;/P&gt;&lt;P&gt;  w_doc_data-obj_descr = ld_mtitle .&lt;/P&gt;&lt;P&gt;  w_doc_data-sensitivty = 'F'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;fill the document data and get size of attachment&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  clear w_doc_data.&lt;/P&gt;&lt;P&gt;  read table it_attach index w_cnt.&lt;/P&gt;&lt;P&gt;  w_doc_data-doc_size =&lt;/P&gt;&lt;P&gt;  ( w_cnt - 1 ) * 255 + strlen( it_attach ).&lt;/P&gt;&lt;P&gt;  w_doc_data-obj_langu = sy-langu.&lt;/P&gt;&lt;P&gt;  w_doc_data-obj_name = 'SAPRPT'.&lt;/P&gt;&lt;P&gt;  w_doc_data-obj_descr = ld_mtitle.&lt;/P&gt;&lt;P&gt;  w_doc_data-sensitivty = 'F'.&lt;/P&gt;&lt;P&gt;  clear t_attachment.&lt;/P&gt;&lt;P&gt;  refresh t_attachment.&lt;/P&gt;&lt;P&gt;  t_attachment[] = it_attach[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;describe the body of the message&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  clear t_packing_list.&lt;/P&gt;&lt;P&gt;  refresh t_packing_list.&lt;/P&gt;&lt;P&gt;  t_packing_list-transf_bin = space.&lt;/P&gt;&lt;P&gt;  t_packing_list-head_start = 1.&lt;/P&gt;&lt;P&gt;  t_packing_list-head_num = 0.&lt;/P&gt;&lt;P&gt;  t_packing_list-body_start = 1.&lt;/P&gt;&lt;P&gt;  describe table it_message lines t_packing_list-body_num.&lt;/P&gt;&lt;P&gt;  t_packing_list-doc_type = 'RAW'.&lt;/P&gt;&lt;P&gt;  append t_packing_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;create attachment notification&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  t_packing_list-transf_bin = 'X'.&lt;/P&gt;&lt;P&gt;  t_packing_list-head_start = 1.&lt;/P&gt;&lt;P&gt;  t_packing_list-head_num = 1.&lt;/P&gt;&lt;P&gt;  t_packing_list-body_start = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  describe table t_attachment lines t_packing_list-body_num.&lt;/P&gt;&lt;P&gt;  t_packing_list-doc_type = ld_format.&lt;/P&gt;&lt;P&gt;  t_packing_list-obj_descr = ld_attdescription.&lt;/P&gt;&lt;P&gt;  t_packing_list-obj_name = ld_attfilename.&lt;/P&gt;&lt;P&gt;  t_packing_list-doc_size = t_packing_list-body_num * 255.&lt;/P&gt;&lt;P&gt;  append t_packing_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;add the recipients email address&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  clear t_receivers.&lt;/P&gt;&lt;P&gt;  refresh t_receivers.&lt;/P&gt;&lt;P&gt;  loop at s_mail.&lt;/P&gt;&lt;P&gt;    t_receivers-receiver = s_mail-low.&lt;/P&gt;&lt;P&gt;    t_receivers-rec_type = 'U'.&lt;/P&gt;&lt;P&gt;    t_receivers-com_type = 'INT'.&lt;/P&gt;&lt;P&gt;*t_receivers-notif_del = 'X'.&lt;/P&gt;&lt;P&gt;*t_receivers-notif_ndel = 'X'.&lt;/P&gt;&lt;P&gt;    append t_receivers.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'SO_DOCUMENT_SEND_API1'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      document_data              = w_doc_data&lt;/P&gt;&lt;P&gt;      put_in_outbox              = 'X'&lt;/P&gt;&lt;P&gt;      sender_address             = ld_sender_address&lt;/P&gt;&lt;P&gt;      sender_address_type        = ld_sender_address_type&lt;/P&gt;&lt;P&gt;      commit_work                = 'X'&lt;/P&gt;&lt;P&gt;    importing&lt;/P&gt;&lt;P&gt;      sent_to_all                = w_sent_all&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      object_header              = t_object_header&lt;/P&gt;&lt;P&gt;      packing_list               = t_packing_list&lt;/P&gt;&lt;P&gt;      contents_bin               = t_attachment&lt;/P&gt;&lt;P&gt;      contents_txt               = it_message&lt;/P&gt;&lt;P&gt;      receivers                  = t_receivers&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      too_many_receivers         = 1&lt;/P&gt;&lt;P&gt;      document_not_sent          = 2&lt;/P&gt;&lt;P&gt;      document_type_not_exist    = 3&lt;/P&gt;&lt;P&gt;      operation_no_authorization = 4&lt;/P&gt;&lt;P&gt;      parameter_error            = 5&lt;/P&gt;&lt;P&gt;      x_error                    = 6&lt;/P&gt;&lt;P&gt;      enqueue_error              = 7&lt;/P&gt;&lt;P&gt;      others                     = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;populate zerror return code&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ld_error = sy-subrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;populate zreceiver return code&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at t_receivers.&lt;/P&gt;&lt;P&gt;    ld_receiver = t_receivers-retrn_code.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;endform.                    "f_send&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2008 08:23:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493296#M1063404</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-18T08:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: Send email</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493297#M1063405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I hope the below link will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="419320"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Khushboo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2008 08:29:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493297#M1063405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-18T08:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: Send email</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493298#M1063406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried alll of them ...but i m not getting any mail...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do we have to do some configuration in SAP..for that...&lt;/P&gt;&lt;P&gt;pLz let me know....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2008 12:58:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493298#M1063406</guid>
      <dc:creator>RahulKeshav</dc:creator>
      <dc:date>2008-09-18T12:58:09Z</dc:date>
    </item>
    <item>
      <title>Re: Send email</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493299#M1063407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to do some configuration in SCOT, and configure SMTP protocol.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arpit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2008 13:01:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493299#M1063407</guid>
      <dc:creator>arpit_shah</dc:creator>
      <dc:date>2008-09-18T13:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: Send email</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493300#M1063408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;wt to do...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2008 13:03:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493300#M1063408</guid>
      <dc:creator>RahulKeshav</dc:creator>
      <dc:date>2008-09-18T13:03:40Z</dc:date>
    </item>
    <item>
      <title>Re: Send email</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493301#M1063409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arpit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i used FM ...and able to send the mail..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but once i execute the report ...i have to go to SCOT tcode for further processing...i execute there then it sends the mail...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz help me..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2008 05:43:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493301#M1063409</guid>
      <dc:creator>RahulKeshav</dc:creator>
      <dc:date>2008-09-19T05:43:48Z</dc:date>
    </item>
    <item>
      <title>Re: Send email</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493302#M1063410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No it should be sent by automatically.no manual work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just wait for a while some time it may take 3-4 minutes to send a mail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2008 05:51:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493302#M1063410</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-19T05:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: Send email</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493303#M1063411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried but ....ihav eto go to  SCOT....for further process...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz suggest me..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do i need to cofig something in SCOT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rohit Kumar on Sep 19, 2008 12:01 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2008 06:30:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493303#M1063411</guid>
      <dc:creator>RahulKeshav</dc:creator>
      <dc:date>2008-09-19T06:30:35Z</dc:date>
    </item>
    <item>
      <title>Re: Send email</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493304#M1063412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from SCOT mail should be send automatically since you have done all cofiguration for SMTP connect.just take a guide from basis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2008 06:40:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493304#M1063412</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-19T06:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: Send email</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493305#M1063413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do i hav to schedule the job for sending the mail in SCOT...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;because it remains there only...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i executes "START SEND PROCESS"  then only i m getting the mail...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":face_with_open_mouth:"&gt;😮&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2008 07:04:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493305#M1063413</guid>
      <dc:creator>RahulKeshav</dc:creator>
      <dc:date>2008-09-19T07:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: Send email</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493306#M1063414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rohit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should automatically refreshed all SEND RECIEVE process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why you don't ask your Basis person?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2008 07:07:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493306#M1063414</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-19T07:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: Send email</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493307#M1063415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After configuration in SCOT, it is a one time configuration,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and after sending mail, u have to go to SOST and send mail manually.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or u hv to call &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT rsconn01 WITH mode   = 'INT'&lt;/P&gt;&lt;P&gt;                    WITH output = 'X'&lt;/P&gt;&lt;P&gt;                    AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after sending mail in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it is solved your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arpit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 06:28:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493307#M1063415</guid>
      <dc:creator>arpit_shah</dc:creator>
      <dc:date>2008-09-22T06:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: Send email</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493308#M1063416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; In SCOT go to Settings --&amp;gt; Send Jobs . See if a job (Internet) already exists. Set the period to about 1 minute. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The send process will be automatically carried out every 1 minute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If no jobs are present, create one in SCOT View-&amp;gt; Jobs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajvansh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rajvansh Ravi on Sep 22, 2008 8:52 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 06:51:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493308#M1063416</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-22T06:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: Send email</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493309#M1063417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx&lt;/P&gt;&lt;P&gt;now i m able to send the email with attachment....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now the problem is that i m getting junk charaters in the attachment....&lt;/P&gt;&lt;P&gt;after every row i m getting junk character....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i m using document typeas RAW...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz suggest me .....i thing it is the length of the row(record)...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;becoz when i send three fields (column) i get it correctly....but as i send more then 3 fields(column) i get the junk character....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am able to send upto GT_OBJBIN-LINE+78(1)....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as i try to send  GT_OBJBIN-LINE+79(10)..it gives junk character....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz help me in that...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2008 11:24:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493309#M1063417</guid>
      <dc:creator>RahulKeshav</dc:creator>
      <dc:date>2008-09-24T11:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: Send email</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493310#M1063418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you don't want through by programming then just execute program,&lt;/P&gt;&lt;P&gt;after showing o/p just press ctrl + F7 or there is button for Mail recipient, click on that and add email id and send and go to sost and release and send mail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arpit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2008 13:09:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493310#M1063418</guid>
      <dc:creator>arpit_shah</dc:creator>
      <dc:date>2008-09-24T13:09:01Z</dc:date>
    </item>
    <item>
      <title>Re: Send email</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493311#M1063419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have one simeler  requirement is we have certain applications which are integrated&lt;/P&gt;&lt;P&gt;with SAP Portal.&lt;/P&gt;&lt;P&gt;For these applications Data sources are maintained in two different&lt;/P&gt;&lt;P&gt;LDAPS.&lt;/P&gt;&lt;P&gt;One LDAP (enterprise directory) is for USER data and the other LDAP for&lt;/P&gt;&lt;P&gt;Company data(in this senario company data is nothing but business&lt;/P&gt;&lt;P&gt;partner role oragnization).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So here the question is, Can we use SAP standard LDAP connectors to&lt;/P&gt;&lt;P&gt;make connectivity to the enterprise directory(LDAP)and push business&lt;/P&gt;&lt;P&gt;partners data from CRM to the enterprise directory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Standard SAP CRM system which are standard LDAP connectors support&lt;/P&gt;&lt;P&gt;this functionality?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advice me and also let me know if we have any SAP notes for this&lt;/P&gt;&lt;P&gt;senario.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Prasad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2008 11:21:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-email/m-p/4493311#M1063419</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-13T11:21:37Z</dc:date>
    </item>
  </channel>
</rss>

