<?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: convert attachment format from HTML to EXCEL in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742352#M1458799</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Dear friend, 
&amp;lt;li&amp;gt;Go through the program where attachment is being built, there you will see HTML tags, then decide instead of HTML tags, what needs to be replaced. 

Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Mar 2010 06:08:43 GMT</pubDate>
    <dc:creator>venkat_o</dc:creator>
    <dc:date>2010-03-17T06:08:43Z</dc:date>
    <item>
      <title>convert attachment format from HTML to EXCEL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742347#M1458794</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;I have existing program which sends email with HTML attachment. I would like to convert the attachment format to EXCEL format. Do you have any idea on how to do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I  did some research and found that it can be done via SCOT config. But i just want to make sure that there's no abap code change. The program used FM 'SO_NEW_DOCUMENT_ATT_SEND_API1'. Packing list documnet type is HTM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks so much in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 02:52:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742347#M1458794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T02:52:50Z</dc:date>
    </item>
    <item>
      <title>Re: convert attachment format from HTML to EXCEL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742348#M1458795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hi, 
&amp;lt;li&amp;gt;I think that you have to modify code to send mail with XLS attachment, set below one after attachment table is built. 
 &lt;PRE&gt;&lt;CODE&gt;w_packing_list-doc_type   = 'XLS'.&lt;/CODE&gt;&lt;/PRE&gt;
&amp;lt;li&amp;gt;Check the existing packing table how the data is passed when docutype is HTM. 

Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 03:06:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742348#M1458795</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2010-03-17T03:06:07Z</dc:date>
    </item>
    <item>
      <title>Re: convert attachment format from HTML to EXCEL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742349#M1458796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for prompt reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have changed the document type to 'XLS'. But the problem now, the excel doesn't contain correct output. I think is more of unicode characters. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you help me on this? Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 03:52:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742349#M1458796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T03:52:21Z</dc:date>
    </item>
    <item>
      <title>Re: convert attachment format from HTML to EXCEL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742350#M1458797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hi,
&amp;lt;li&amp;gt;There are 3 exp parameters related to attachments in FM 
&lt;PRE&gt;&lt;CODE&gt;
CONTENTS_BIN	LIKE	SOLISTI1	Obsolete: See Contents_Hex
CONTENTS_TXT	LIKE	SOLISTI1	ASCII contents of object and attachments
CONTENTS_HEX	LIKE	SOLIX	Binary contents of object and attachments
&lt;/CODE&gt;&lt;/PRE&gt;
&amp;lt;li&amp;gt;If you are sending text file or xls file as attachments, use &lt;STRONG&gt;CONTENTS_TXT&lt;/STRONG&gt; parameter instead of &lt;STRONG&gt;CONTENTS_BIN&lt;/STRONG&gt; and &lt;STRONG&gt;CONTENTS_HEX&lt;/STRONG&gt;. 

Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 04:09:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742350#M1458797</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2010-03-17T04:09:48Z</dc:date>
    </item>
    <item>
      <title>Re: convert attachment format from HTML to EXCEL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742351#M1458798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I still get the wrong excel contents. The excel contains the html codes. what would I need to correct the values on excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate your help. Thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 06:04:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742351#M1458798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T06:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: convert attachment format from HTML to EXCEL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742352#M1458799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Dear friend, 
&amp;lt;li&amp;gt;Go through the program where attachment is being built, there you will see HTML tags, then decide instead of HTML tags, what needs to be replaced. 

Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 06:08:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742352#M1458799</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2010-03-17T06:08:43Z</dc:date>
    </item>
    <item>
      <title>Re: convert attachment format from HTML to EXCEL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742353#M1458800</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;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt; First you need to check in your program, how they are filling the attachement table while passing the "SO_NEW_DOCUMENT_ATT_SEND_API1"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt; Define a new internal table type  solisti1 and try to fill the contents seperated by '#' or CL_ABAP_CHAR_UTILITIES-HORIZONTAL_TAB&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt; packlist-doc_type 'XLS' and try to execute the fm. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Praveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 06:29:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742353#M1458800</guid>
      <dc:creator>praveen_hannu</dc:creator>
      <dc:date>2010-03-17T06:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: convert attachment format from HTML to EXCEL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742354#M1458801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;SAP_CONVERT_TO_XLS_FORMAT function module converts data to excel format.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 06:50:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742354#M1458801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T06:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: convert attachment format from HTML to EXCEL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742355#M1458802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;2 things you can do!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) First write a sample program for sending excel attachment mail&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt;You can definetly tons of programs here  or in your own system also you can see ...its easy way &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; Then you can Compare the Excel mail attachment program with the Existing HTML program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) At last nothing works out ..Please past your code !! But make it as final option &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best wishes&lt;/P&gt;&lt;P&gt;sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 07:02:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742355#M1458802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T07:02:18Z</dc:date>
    </item>
    <item>
      <title>Re: convert attachment format from HTML to EXCEL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742356#M1458803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Akaira,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can use the following function module "SO_NEW_DOCUMENT_ATT_SEND_API1" &lt;/P&gt;&lt;P&gt;use the fiollowing class "cl_abap_char_utilities" to build the Excel data table from this class use the attributes "CR_LF" and "HORIZONTAL_TAB",&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you kow the SpoolID then you can do the following thing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Function "RSPO_DISPLAY_SPOOLJOB" to automate the process of display.&lt;/P&gt;&lt;P&gt;u then can download to Excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"RSPO_DOWNLOAD_SPOOLJOB" downloads to a flat fileThat could be processed to CSV &amp;amp; captured into Excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try "SE37 RSPO_DOWNLOAD_SPOOLJOB" single test nothing could be easier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and simple and easy manual process is :&lt;/P&gt;&lt;P&gt;1. SP01 and see your entry&lt;/P&gt;&lt;P&gt;2. Click on Type or Display Button or F6&lt;/P&gt;&lt;P&gt;3. It may show 1st 10 pages&lt;/P&gt;&lt;P&gt;4. Click on settings in the display&lt;/P&gt;&lt;P&gt;Change last page&lt;/P&gt;&lt;P&gt;5. Ignore memory warning - whisper 'Joy Ma Kaali'&lt;/P&gt;&lt;P&gt;6. Right click &amp;amp; Save to Local File as Excel!&lt;/P&gt;&lt;P&gt;************************************************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it is not clear then please let me know I will provide you the example program&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;Arif&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 08:12:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742356#M1458803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T08:12:31Z</dc:date>
    </item>
    <item>
      <title>Re: convert attachment format from HTML to EXCEL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742357#M1458804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don´t understand exactly why do you need to do this. But if you want to generate the Excel programatically, you can use approach presented in my blog here: /people/otto.gold/blog/2010/02/11/happy-reporting-with-excel-ii&lt;/P&gt;&lt;P&gt;Otto&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 08:46:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742357#M1458804</guid>
      <dc:creator>OttoGold</dc:creator>
      <dc:date>2010-03-17T08:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: convert attachment format from HTML to EXCEL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742358#M1458805</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;what ever way you go, it will never work in background. The excel installation on your client (PC) must be used to create MS excel proprietary format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you do not want proprietary binary MS excel format but something excel can read (tab-delimited, CSV, mhtmlm...) there are more ways. But first you need to know what you want.&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;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 08:51:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742358#M1458805</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2010-03-17T08:51:40Z</dc:date>
    </item>
    <item>
      <title>Re: convert attachment format from HTML to EXCEL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742359#M1458806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks to all your replies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to convert the html format because it caused too big file attachment which exceeds to 20 MB. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, i am able to get the html file but the contents are displayed in the first line of the excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have any ideas on this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 11:10:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742359#M1458806</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T11:10:02Z</dc:date>
    </item>
    <item>
      <title>Re: convert attachment format from HTML to EXCEL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742360#M1458807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi akira,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if size is the issue, i wonder why any excel shouls be significantly smaller.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use Class CL_ABAP_GZIP and its static methods&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;COMPRESS_TEXT
DECOMPRESS_TEXT
COMPRESS_BINARY
DECOMPRESS_BINARY&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;to shrink to an appropriate size.&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;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 13:59:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742360#M1458807</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2010-03-17T13:59:33Z</dc:date>
    </item>
    <item>
      <title>Re: convert attachment format from HTML to EXCEL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742361#M1458808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;what ever way you go, it will never work in background&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This is not true!! If you would read a blog I have mentioned above (part 2), you would understand that works the way it generates the xml file which is then interpreted as Excel file. Maybe you can do a little check first.&lt;/P&gt;&lt;P&gt;Otto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 15:08:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742361#M1458808</guid>
      <dc:creator>OttoGold</dc:creator>
      <dc:date>2010-03-17T15:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: convert attachment format from HTML to EXCEL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742362#M1458809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Otto,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;what ever way you go, it will never work in background&lt;/EM&gt; is what I wrote. And I continued&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;The excel installation on your client (PC) must be used to create MS excel proprietary format.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;If you do not want proprietary binary MS excel format but something excel can read (tab-delimited, CSV, &lt;U&gt;&lt;STRONG&gt;mhtml&lt;/STRONG&gt;&lt;/U&gt;m...) &lt;STRONG&gt;there are more ways&lt;/STRONG&gt;. But first you need to know what you want.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And this is still true.  &lt;EM&gt;more ways&lt;/EM&gt; includes background processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, obviously file size is the issue, not file format. As I  said, &lt;EM&gt;need to know what you want&lt;/EM&gt; is quite important. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;do a little check first&lt;/EM&gt; is always helpful, but: People do not always have the time for such things &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&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;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 17:15:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-attachment-format-from-html-to-excel/m-p/6742362#M1458809</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2010-03-17T17:15:16Z</dc:date>
    </item>
  </channel>
</rss>

