<?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 Converting .XLSX into .CSV format in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-xlsx-into-csv-format/m-p/11888763#M1961335</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Techies,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have developed ABAP program which extracts various data from SAP tables and creates files.&lt;/P&gt;&lt;P&gt;As customer had asked for .XLSX format we gave the same.&lt;/P&gt;&lt;P&gt;Now customer is asking to additionally convert the files into .CSV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From my ABAP person I understand that our current version of SAP ECC 6.0 does not support this possibility.&lt;/P&gt;&lt;P&gt;I am not very sure if there is any restriction in ECC6.0 version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone share their experience on this topic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sameer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Sep 2016 16:41:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2016-09-14T16:41:14Z</dc:date>
    <item>
      <title>Converting .XLSX into .CSV format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-xlsx-into-csv-format/m-p/11888763#M1961335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Techies,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have developed ABAP program which extracts various data from SAP tables and creates files.&lt;/P&gt;&lt;P&gt;As customer had asked for .XLSX format we gave the same.&lt;/P&gt;&lt;P&gt;Now customer is asking to additionally convert the files into .CSV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From my ABAP person I understand that our current version of SAP ECC 6.0 does not support this possibility.&lt;/P&gt;&lt;P&gt;I am not very sure if there is any restriction in ECC6.0 version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone share their experience on this topic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sameer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Sep 2016 16:41:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-xlsx-into-csv-format/m-p/11888763#M1961335</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-09-14T16:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: Converting .XLSX into .CSV format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-xlsx-into-csv-format/m-p/11888764#M1961336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are starting in the wrong place.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your Z program, you extract data, and presumably, before you create an XLSX file, you have all the data in a nice internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of converting your XLSX file to CSV - why not just write a CSV directly out of your internal table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 09:20:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-xlsx-into-csv-format/m-p/11888764#M1961336</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2016-09-15T09:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: Converting .XLSX into .CSV format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-xlsx-into-csv-format/m-p/11888765#M1961337</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;Declare an internal table (t_transfer ) with one field ( Line of type char2000 for examp ) ==&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at you old internal table into wa. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate wa-field1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa-field2 &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .............&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa-field(n) &lt;/P&gt;&lt;P&gt;into wa_transfer-line separated by ';' . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append &lt;SPAN style="font-size: 13.3333px;"&gt;wa_transfer to T&lt;SPAN style="font-size: 13.3333px;"&gt;_transfer . &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Endloop . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then use FM GUI_DOWNLOAD or method GUI_DOWNLOAD of class CL_GUI_FRONTEND_SERVICES to transfer you new internal table to a CSV file &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, 15 Sep 2016 09:30:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-xlsx-into-csv-format/m-p/11888765#M1961337</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-09-15T09:30:25Z</dc:date>
    </item>
  </channel>
</rss>

