<?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 CSV file withe headings in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-file-withe-headings/m-p/6385360#M1403813</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 an internal table which converts the data into the CSV format  and again pass this data table through the FM GUI_DOWNLOAD to display the data with the headings. But am not able to display the headings(I think .CSV file format &lt;/P&gt;&lt;P&gt;doesn't work to display along with the headings).  Please suggest me the possible solution. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Padmasri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Nov 2009 09:44:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-11-26T09:44:07Z</dc:date>
    <item>
      <title>CSV file withe headings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-file-withe-headings/m-p/6385360#M1403813</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 an internal table which converts the data into the CSV format  and again pass this data table through the FM GUI_DOWNLOAD to display the data with the headings. But am not able to display the headings(I think .CSV file format &lt;/P&gt;&lt;P&gt;doesn't work to display along with the headings).  Please suggest me the possible solution. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Padmasri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2009 09:44:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-file-withe-headings/m-p/6385360#M1403813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-26T09:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: CSV file withe headings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-file-withe-headings/m-p/6385361#M1403814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you passing the column headings to the tables parameter FIELDNAMES in GUI_DOWNLOAD?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2009 09:49:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-file-withe-headings/m-p/6385361#M1403814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-26T09:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: CSV file withe headings</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-file-withe-headings/m-p/6385362#M1403815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vikrant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tb_final1[] = tb_final[].&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'SAP_CONVERT_TO_TEX_FORMAT'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          i_field_seperator          = ','&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          i_tab_sap_data             = tb_header&lt;/P&gt;&lt;P&gt;        CHANGING&lt;/P&gt;&lt;P&gt;          i_tab_converted_data       = tb_data&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;          conversion_failed          = 1&lt;/P&gt;&lt;P&gt;          OTHERS                     = 2.&lt;/P&gt;&lt;P&gt;      IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;P&gt;                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;   IF tb_data[] IS NOT INITIAL.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;       IF tb_final[] IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;        CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;          filename                        = 'C:\TEMP.CSV'    "c_filename&lt;/P&gt;&lt;P&gt;          filetype                        = 'ASC'&lt;/P&gt;&lt;P&gt;          write_field_separator           = ','&lt;/P&gt;&lt;P&gt;          confirm_overwrite               = 'X'&lt;/P&gt;&lt;P&gt;         TABLES&lt;/P&gt;&lt;P&gt;          data_tab                        = tb_final&lt;/P&gt;&lt;P&gt;          fieldnames                      = tb_header  "Headings&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Padmasri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2009 09:55:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-file-withe-headings/m-p/6385362#M1403815</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-26T09:55:30Z</dc:date>
    </item>
  </channel>
</rss>

