<?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: attachment with no extension using SO_DOCUMENT_SEND_API1 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-with-no-extension-using-so-document-send-api1/m-p/5755851#M1303951</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'll try again.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just looked again. The file in SAP Outbox is fine (correct 001 extension) but the one at the recipient email has the txt (or raw) extension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does that mean the mail program is the problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Kroc on Jun 25, 2009 12:23 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Jun 2009 11:22:51 GMT</pubDate>
    <dc:creator>aidan_mulcahy</dc:creator>
    <dc:date>2009-06-25T11:22:51Z</dc:date>
    <item>
      <title>attachment with no extension using SO_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-with-no-extension-using-so-document-send-api1/m-p/5755846#M1303946</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;anyone know if it is possible to create a txt file email attachement with SO_DOCUMENT_SEND_API1 but NOT to have the attachment name with the '.txt' extension?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like the attachment to be 'filename.001' but when it is emailed it being sent as 'filename.001.txt'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2009 10:58:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-with-no-extension-using-so-document-send-api1/m-p/5755846#M1303946</guid>
      <dc:creator>aidan_mulcahy</dc:creator>
      <dc:date>2009-06-25T10:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: attachment with no extension using SO_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-with-no-extension-using-so-document-send-api1/m-p/5755847#M1303947</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;Have you tried like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
t_packing_list-doc_type = 'RAW'.
....
----
  CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
      document_data                    = w_doc_data
*     PUT_IN_OUTBOX                    = ' '
     commit_work                      = 'X'
   IMPORTING
     sent_to_all                      = lv_flag
*     NEW_OBJECT_ID                    =
    TABLES
      packing_list                     = t_packing_list

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2009 11:01:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-with-no-extension-using-so-document-send-api1/m-p/5755847#M1303947</guid>
      <dc:creator>former_member192467</dc:creator>
      <dc:date>2009-06-25T11:01:31Z</dc:date>
    </item>
    <item>
      <title>Re: attachment with no extension using SO_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-with-no-extension-using-so-document-send-api1/m-p/5755848#M1303948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just did it. Same thing....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;attachment is 'filename.001.RAW'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2009 11:06:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-with-no-extension-using-so-document-send-api1/m-p/5755848#M1303948</guid>
      <dc:creator>aidan_mulcahy</dc:creator>
      <dc:date>2009-06-25T11:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: attachment with no extension using SO_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-with-no-extension-using-so-document-send-api1/m-p/5755849#M1303949</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;The function module documentation contains an example for sending a bmp file as raw. Please check that example to see if we have missed anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Renjith Michael on Jun 25, 2009 1:13 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Renjith Michael on Jun 25, 2009 1:14 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Renjith Michael on Jun 25, 2009 1:14 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2009 11:13:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-with-no-extension-using-so-document-send-api1/m-p/5755849#M1303949</guid>
      <dc:creator>former_member192467</dc:creator>
      <dc:date>2009-06-25T11:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: attachment with no extension using SO_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-with-no-extension-using-so-document-send-api1/m-p/5755850#M1303950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is a test - trying to reply but automatic moderator refusing&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2009 11:21:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-with-no-extension-using-so-document-send-api1/m-p/5755850#M1303950</guid>
      <dc:creator>aidan_mulcahy</dc:creator>
      <dc:date>2009-06-25T11:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: attachment with no extension using SO_DOCUMENT_SEND_API1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-with-no-extension-using-so-document-send-api1/m-p/5755851#M1303951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'll try again.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just looked again. The file in SAP Outbox is fine (correct 001 extension) but the one at the recipient email has the txt (or raw) extension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does that mean the mail program is the problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Kroc on Jun 25, 2009 12:23 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2009 11:22:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/attachment-with-no-extension-using-so-document-send-api1/m-p/5755851#M1303951</guid>
      <dc:creator>aidan_mulcahy</dc:creator>
      <dc:date>2009-06-25T11:22:51Z</dc:date>
    </item>
  </channel>
</rss>

