<?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: CSV dump in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-dump/m-p/6827892#M1471026</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 have to find out the month in words and year by keying in period and year. For example if i put period 03 and year 2010&lt;/P&gt;&lt;P&gt;then it should throw back June 2010. Is there any standard function module availabe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Mar 2010 09:21:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-03-25T09:21:39Z</dc:date>
    <item>
      <title>CSV dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-dump/m-p/6827888#M1471022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;I have an internal table with 9 fields ( emp no,emp bank ac no, blank1,blank2,blank3, amount,blank4,blank5, empname). The fields blank1,blank2,blank3,blank4,blank5 would be empty fields without values. I want this table to convert to CSV file and dump it on the desktop. I have used SAP_CONVERT_TO_CSV_FORMAT to convert the table in CSV format with all the 9 fields.&lt;/P&gt;&lt;P&gt;then i have used GUI_download to create dump on the desktop but when i open the file with excel it shows semicolon in between each field and the blank fields are also not showing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Farkankhud&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 04:41:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-dump/m-p/6827888#M1471022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-25T04:41:45Z</dc:date>
    </item>
    <item>
      <title>Re: CSV dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-dump/m-p/6827889#M1471023</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;In Gui_download You can pass write field-seperator = ' , '. No need to use that another FM in this case&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;kishore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 05:19:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-dump/m-p/6827889#M1471023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-25T05:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: CSV dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-dump/m-p/6827890#M1471024</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;In Gui_download You can pass write field-seperator = ' , '. No need to use that another FM in this case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then the dump will come to tab delimited file. After that can save the as (.CSV) file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;kishore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 05:33:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-dump/m-p/6827890#M1471024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-25T05:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: CSV dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-dump/m-p/6827891#M1471025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Kishore,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have looped through the internal table to concatenate each row appended to a string type internal table separated by ','.&lt;/P&gt;&lt;P&gt;then i passed this string type table to gui_download to get the desired result&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 06:16:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-dump/m-p/6827891#M1471025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-25T06:16:11Z</dc:date>
    </item>
    <item>
      <title>Re: CSV dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/csv-dump/m-p/6827892#M1471026</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 have to find out the month in words and year by keying in period and year. For example if i put period 03 and year 2010&lt;/P&gt;&lt;P&gt;then it should throw back June 2010. Is there any standard function module availabe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 09:21:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/csv-dump/m-p/6827892#M1471026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-25T09:21:39Z</dc:date>
    </item>
  </channel>
</rss>

