<?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 internal table to CSV format in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397160#M1546359</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why don't you try with the function Download &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA:  ZM_FICHERO(128),
             ZM_TIPO(3),
            ZM_TIPRES(3).

 CALL FUNCTION 'DOWNLOAD'
   EXPORTING  CODEPAGE    = SPACE
      FILENAME                        = 'C:\'
      FILETYPE                         = 'DAT'
       ITEM                                = 'REPORTE'
  IMPORTING  ACT_FILENAME     = ZM_FICHERO ' --&amp;gt;  Name of file to be saved
     ACT_FILETYPE     = ZM_TIPRES
       FILESIZE            = ZM_TAMANO   '--&amp;gt; size
  TABLES     DATA_TAB         = TI_DATA '--&amp;gt; ITAB 
  EXCEPTIONS INVALID_FILESIZE = 1
             INVALID_TABLA_WIDTH = 2
             INVALID_TYPE     = 3.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Nov 2010 18:23:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-11-09T18:23:27Z</dc:date>
    <item>
      <title>Convert internal table to CSV format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397156#M1546355</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 have an internal table with 83 columns. And I am using the function SAP_CONVERT_TO_CSV_FORMAT to convert it to the CSV format. The problem is that in the excel file it only appears 26 columns have anyone faced  this problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Nov 2010 17:28:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397156#M1546355</guid>
      <dc:creator>marisa_quaresma</dc:creator>
      <dc:date>2010-11-09T17:28:28Z</dc:date>
    </item>
    <item>
      <title>Re: Convert internal table to CSV format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397157#M1546356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how are you getting the data into Excel?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Nov 2010 17:39:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397157#M1546356</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-09T17:39:58Z</dc:date>
    </item>
    <item>
      <title>Re: Convert internal table to CSV format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397158#M1546357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you using the semi-colon as your delimiter when opening the text file with Excel?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Nov 2010 18:07:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397158#M1546357</guid>
      <dc:creator>MrWhan</dc:creator>
      <dc:date>2010-11-09T18:07:44Z</dc:date>
    </item>
    <item>
      <title>Re: Convert internal table to CSV format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397159#M1546358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, other thing that you can do is, create a internal table with a simple field with 2000 characters length. Fill this internal table with all the columns that you have separated by comma ",". Use the function to download the internal table "GUI_DOWNLOAD" and specify the file with CSV extesion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you open the file, it will be open with Excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know is this helped you.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jesus Martinez&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Nov 2010 18:20:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397159#M1546358</guid>
      <dc:creator>former_member211627</dc:creator>
      <dc:date>2010-11-09T18:20:05Z</dc:date>
    </item>
    <item>
      <title>Re: Convert internal table to CSV format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397160#M1546359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why don't you try with the function Download &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA:  ZM_FICHERO(128),
             ZM_TIPO(3),
            ZM_TIPRES(3).

 CALL FUNCTION 'DOWNLOAD'
   EXPORTING  CODEPAGE    = SPACE
      FILENAME                        = 'C:\'
      FILETYPE                         = 'DAT'
       ITEM                                = 'REPORTE'
  IMPORTING  ACT_FILENAME     = ZM_FICHERO ' --&amp;gt;  Name of file to be saved
     ACT_FILETYPE     = ZM_TIPRES
       FILESIZE            = ZM_TAMANO   '--&amp;gt; size
  TABLES     DATA_TAB         = TI_DATA '--&amp;gt; ITAB 
  EXCEPTIONS INVALID_FILESIZE = 1
             INVALID_TABLA_WIDTH = 2
             INVALID_TYPE     = 3.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Nov 2010 18:23:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397160#M1546359</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-09T18:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: Convert internal table to CSV format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397161#M1546360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;GUI_DOWNLOAD supports transfers up to 1024 bytes, not 2000...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Nov 2010 18:26:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397161#M1546360</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-09T18:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Convert internal table to CSV format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397162#M1546361</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 you do not export data in native excel?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to read these blogs&lt;/P&gt;&lt;P&gt;[abap2xlsx - Generate your professional Excel spreadsheet from ABAP|http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/20046] &lt;B&gt;[original link is broken]&lt;/B&gt; &lt;B&gt;[original link is broken]&lt;/B&gt; &lt;B&gt;[original link is broken]&lt;/B&gt;;&lt;/P&gt;&lt;P&gt;[xlsx2abap - Read and edit your Excel files from ABAP|http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/20791] &lt;B&gt;[original link is broken]&lt;/B&gt; &lt;B&gt;[original link is broken]&lt;/B&gt; &lt;B&gt;[original link is broken]&lt;/B&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code of this SCN Community project is shared on [Code Exchange|https://cw.sdn.sap.com/cw/groups/abap2xlsx]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ivan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Nov 2010 23:02:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397162#M1546361</guid>
      <dc:creator>_IvanFemia_</dc:creator>
      <dc:date>2010-11-09T23:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: Convert internal table to CSV format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397163#M1546362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;     in that case you create a program in se38 then define your structure or table, define itab ,then use &lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;call function  module download.&lt;/P&gt;&lt;P&gt;end loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in download function module uncomment exporting, file name, file type and infront it_tab=itab.&lt;/P&gt;&lt;P&gt;you get your all data.&lt;/P&gt;&lt;P&gt;use filetype as dat format&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sulabh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: sulabh agrawal on Nov 10, 2010 5:07 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Nov 2010 04:06:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397163#M1546362</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-10T04:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: Convert internal table to CSV format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397164#M1546363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;I am using the semicolon separator. However I cannot use the function guidownload or the download one,  because I need to export this excel as an attach in an email. I cannot export in native excel since it was requested to send it in  CSV format.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Nov 2010 09:55:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397164#M1546363</guid>
      <dc:creator>marisa_quaresma</dc:creator>
      <dc:date>2010-11-10T09:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: Convert internal table to CSV format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397165#M1546364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Jesús Martinez, your answer solved my problem. But I had to put a semi colon ';' intead of the coma.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Nov 2010 10:44:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397165#M1546364</guid>
      <dc:creator>marisa_quaresma</dc:creator>
      <dc:date>2010-11-10T10:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: Convert internal table to CSV format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397166#M1546365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are welcome, we are here to help us. Any other question, please let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Nov 2010 21:30:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/7397166#M1546365</guid>
      <dc:creator>former_member211627</dc:creator>
      <dc:date>2010-11-16T21:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: Convert internal table to CSV format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/13888591#M2031247</link>
      <description>&lt;P&gt;I have another issue with the FM&amp;nbsp;&lt;SPAN&gt;SAP_CONVERT_TO_CSV_FORMAT.&amp;nbsp; E&lt;/SPAN&gt;verything works fine with this when we pass internal table as input but when we have uuid fields in the internal table, the output values do not appear properly. It comes as&amp;nbsp;#﬍㻿必#쪞嗺賻 . Can anyone help here?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2024 12:14:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-internal-table-to-csv-format/m-p/13888591#M2031247</guid>
      <dc:creator>SwarSneh</dc:creator>
      <dc:date>2024-10-04T12:14:35Z</dc:date>
    </item>
  </channel>
</rss>

