<?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: query about excel email functionality in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-about-excel-email-functionality/m-p/1503823#M233018</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it should not come like that. any way try to do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as you mentioned the attachment is an Excel file, &lt;/P&gt;&lt;P&gt;just concatenate each field with a ' (aphostrophe). in excel it you say any field '0001232 , means its takes as character &amp;amp; will be by default LEFT-ALLIGNED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this out.&lt;/P&gt;&lt;P&gt;for ex:&lt;/P&gt;&lt;P&gt;   concatenate ''''&lt;/P&gt;&lt;P&gt;               v_field1&lt;/P&gt;&lt;P&gt;               into v_field2.&lt;/P&gt;&lt;P&gt;if v_field1 is 123 , after that that willbe '123.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so in excel, the value will be treated as character(as the value is preceded with a ' ) and left aligned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Aug 2006 06:46:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-04T06:46:51Z</dc:date>
    <item>
      <title>query about excel email functionality</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-about-excel-email-functionality/m-p/1503822#M233017</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'm using this FM SO_NEW_DOCUMENT_ATT_SEND_API1 to send excel file as attachment to external emails.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the problem is that in development &amp;amp; quality system the excel attachment is going properly, but in production the excel file is getting hugely misaligned. Is there some other configuration required in this regards to facilitate this. Thanks in advance for the suggestions.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(P.S - Please don't copy paste code here)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 06:41:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/query-about-excel-email-functionality/m-p/1503822#M233017</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-04T06:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: query about excel email functionality</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-about-excel-email-functionality/m-p/1503823#M233018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it should not come like that. any way try to do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as you mentioned the attachment is an Excel file, &lt;/P&gt;&lt;P&gt;just concatenate each field with a ' (aphostrophe). in excel it you say any field '0001232 , means its takes as character &amp;amp; will be by default LEFT-ALLIGNED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this out.&lt;/P&gt;&lt;P&gt;for ex:&lt;/P&gt;&lt;P&gt;   concatenate ''''&lt;/P&gt;&lt;P&gt;               v_field1&lt;/P&gt;&lt;P&gt;               into v_field2.&lt;/P&gt;&lt;P&gt;if v_field1 is 123 , after that that willbe '123.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so in excel, the value will be treated as character(as the value is preceded with a ' ) and left aligned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 06:46:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/query-about-excel-email-functionality/m-p/1503823#M233018</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-04T06:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: query about excel email functionality</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-about-excel-email-functionality/m-p/1503824#M233019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friend,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  For data to be properly alligned in the Excel file you need to format the data with some characters like,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  '09' - for tab&lt;/P&gt;&lt;P&gt;  '0D' - for next line etc.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to concatenate these characters with the fields that you pass to the excel file...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 06:47:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/query-about-excel-email-functionality/m-p/1503824#M233019</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-04T06:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: query about excel email functionality</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-about-excel-email-functionality/m-p/1503825#M233020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've done this 09 and 0D thing. That's what I said - It's working properly in development and quality. But only in PRD I'm having this problem. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anybody faced this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 06:49:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/query-about-excel-email-functionality/m-p/1503825#M233020</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-04T06:49:17Z</dc:date>
    </item>
  </channel>
</rss>

