<?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: Mail Send in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/mail-send/m-p/2948594#M695219</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;While giving the parameters Change the file type ' dat' or asc &lt;/P&gt;&lt;P&gt;bin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try with all the 3 options.  U will get the correct output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assign points if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Oct 2007 07:56:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-22T07:56:29Z</dc:date>
    <item>
      <title>Mail Send</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mail-send/m-p/2948593#M695218</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 am using 'SO_DOCUMENT_SEND_API1' to send a Email as excel attachment .&lt;/P&gt;&lt;P&gt;before entering into the FM the internal table is showing records as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Material Number #Material Type&lt;/P&gt;&lt;P&gt;000010001 # ROH&lt;/P&gt;&lt;P&gt;But after mail triggering the excel sheet delivered all the records in one line as below.&lt;/P&gt;&lt;P&gt;Material Number #Material Type 000010001 # ROH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz provide me solution  that it should display as if in the Internal Table.&lt;/P&gt;&lt;P&gt;Thanks in adv.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Oct 2007 06:48:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mail-send/m-p/2948593#M695218</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-22T06:48:14Z</dc:date>
    </item>
    <item>
      <title>Re: Mail Send</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mail-send/m-p/2948594#M695219</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;While giving the parameters Change the file type ' dat' or asc &lt;/P&gt;&lt;P&gt;bin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try with all the 3 options.  U will get the correct output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assign points if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Oct 2007 07:56:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mail-send/m-p/2948594#M695219</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-22T07:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: Mail Send</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/mail-send/m-p/2948595#M695220</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;Try like this in your coding &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;doc_type = 'XLS'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : it_xl TYPE soli_tab WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;CONSTANTS : tab_mark TYPE x VALUE '09'. "tab character&lt;/P&gt;&lt;P&gt;CONSTANTS : cr_mark TYPE x VALUE '0D'. "carriage return character&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;fill it_xl which will be the XL file atachment&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;put in the header line for the xl file column headings&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CONCATENATE tab_mark 'Finished Goods' cr_mark into it_xl.&lt;/P&gt;&lt;P&gt;APPEND it_xl.&lt;/P&gt;&lt;P&gt;clear it_xl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;... Fill the rest&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then when you're ready to call the FM to send the attachment remember&lt;/P&gt;&lt;P&gt;for your packing list to use doc_type = 'XLS' and use a file name with a&lt;/P&gt;&lt;P&gt;'.xls' extension for the obj_descr. Eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;objpack-transf_bin = 'X'.&lt;/P&gt;&lt;P&gt;objpack-head_start = 1.&lt;/P&gt;&lt;P&gt;objpack-head_num = 1.&lt;/P&gt;&lt;P&gt;objpack-body_start = 1.&lt;/P&gt;&lt;P&gt;objpack-body_num = tab_lines.&lt;/P&gt;&lt;P&gt;objpack-doc_type = 'XLS'.&lt;/P&gt;&lt;P&gt;objpack-obj_name = 'STOCK REP'.&lt;/P&gt;&lt;P&gt;objpack-obj_descr = 'Report.xls'.&lt;/P&gt;&lt;P&gt;APPEND objpack.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Oct 2007 08:00:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/mail-send/m-p/2948595#M695220</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-22T08:00:22Z</dc:date>
    </item>
  </channel>
</rss>

