<?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 download internal table containt without using function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-internal-table-containt-without-using-function-module/m-p/5590743#M1274527</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all there,&lt;/P&gt;&lt;P&gt;How to download internal table containt into csv file without using function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my requirement is that following are the containt of internal table. &lt;/P&gt;&lt;P&gt;A20000459,040409,1100.00,110.00,2.20,1.10,0.00&lt;/P&gt;&lt;P&gt;*,M1304000265,20.000,,,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the second line of internal table it is showing few commas after volum 20.000 which i don't want, how can i remove only those commas without affecting other commas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;these commas are for the blank places.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;sagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 May 2009 08:57:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-20T08:57:31Z</dc:date>
    <item>
      <title>download internal table containt without using function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-internal-table-containt-without-using-function-module/m-p/5590743#M1274527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all there,&lt;/P&gt;&lt;P&gt;How to download internal table containt into csv file without using function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my requirement is that following are the containt of internal table. &lt;/P&gt;&lt;P&gt;A20000459,040409,1100.00,110.00,2.20,1.10,0.00&lt;/P&gt;&lt;P&gt;*,M1304000265,20.000,,,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the second line of internal table it is showing few commas after volum 20.000 which i don't want, how can i remove only those commas without affecting other commas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;these commas are for the blank places.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;sagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2009 08:57:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/download-internal-table-containt-without-using-function-module/m-p/5590743#M1274527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-20T08:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: download internal table containt without using function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-internal-table-containt-without-using-function-module/m-p/5590744#M1274528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sagar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declare a structure using TYPES for your content. Use SPLIT statement to get content into internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SPLIT &amp;lt;file_content&amp;gt; AT ',' INTO TABLE &amp;lt;internal_table&amp;gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2009 09:03:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/download-internal-table-containt-without-using-function-module/m-p/5590744#M1274528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-20T09:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: download internal table containt without using function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-internal-table-containt-without-using-function-module/m-p/5590745#M1274529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sagar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create an internal table of type you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT &amp;lt;WORK-AREA&amp;gt; AT ',' INTO TABLE &amp;lt;internal_table&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This would create a new line entry into the new internal table without commas which you can write to the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example new line in  internal table would look like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Column1         | Column 2 | Column 3 |&lt;/P&gt;&lt;P&gt;M1304000265 | 20.000      |               |&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2009 09:17:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/download-internal-table-containt-without-using-function-module/m-p/5590745#M1274529</guid>
      <dc:creator>raviahuja</dc:creator>
      <dc:date>2009-05-20T09:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: download internal table containt without using function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-internal-table-containt-without-using-function-module/m-p/5590746#M1274530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want commas inthe file but don't want only where there is space or the fields doesnot contain any entry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pl suggest for this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;sagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2009 10:34:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/download-internal-table-containt-without-using-function-module/m-p/5590746#M1274530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-20T10:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: download internal table containt without using function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-internal-table-containt-without-using-function-module/m-p/5590747#M1274531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sagar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not actually getting your requirement now. What i'm understanding is that, you need ',' ony when there is a blank field  in the internal table, or you dont want the commas at all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want ',' wherever there is a blank fields, then just check for the field before priting. If it is blank, append ',' to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2009 10:39:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/download-internal-table-containt-without-using-function-module/m-p/5590747#M1274531</guid>
      <dc:creator>raviahuja</dc:creator>
      <dc:date>2009-05-20T10:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: download internal table containt without using function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-internal-table-containt-without-using-function-module/m-p/5590748#M1274532</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;why dont you use replace statement.....&lt;/P&gt;&lt;P&gt;the statement which i have written below will remove commas only where the field is blank... pls take a look at it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPLACE ALL OCCURENCES OF ',,' IN &amp;lt;work_area&amp;gt; WITH space.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2009 10:45:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/download-internal-table-containt-without-using-function-module/m-p/5590748#M1274532</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-20T10:45:29Z</dc:date>
    </item>
    <item>
      <title>Re: download internal table containt without using function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-internal-table-containt-without-using-function-module/m-p/5590749#M1274533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ravi,&lt;/P&gt;&lt;P&gt;I don't want commas wherever fields is blank  elsewhere i want commas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Sagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2009 10:55:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/download-internal-table-containt-without-using-function-module/m-p/5590749#M1274533</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-20T10:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: download internal table containt without using function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/download-internal-table-containt-without-using-function-module/m-p/5590750#M1274534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;done&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 06:54:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/download-internal-table-containt-without-using-function-module/m-p/5590750#M1274534</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-25T06:54:37Z</dc:date>
    </item>
  </channel>
</rss>

