<?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 Data Migration from CSV file to Database Table. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-migration-from-csv-file-to-database-table/m-p/4879301#M1140433</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 checked few answered threads on Data Migration Issues but didn't find the solution yet.&lt;/P&gt;&lt;P&gt;I am reading data from an CSV file to internal table but the complete row is coming under one field of the internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How i can get values in different fields of the internal table from the CSV file ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards.&lt;/P&gt;&lt;P&gt;Raman Khurana.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Dec 2008 11:23:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-19T11:23:53Z</dc:date>
    <item>
      <title>Data Migration from CSV file to Database Table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-migration-from-csv-file-to-database-table/m-p/4879301#M1140433</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 checked few answered threads on Data Migration Issues but didn't find the solution yet.&lt;/P&gt;&lt;P&gt;I am reading data from an CSV file to internal table but the complete row is coming under one field of the internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How i can get values in different fields of the internal table from the CSV file ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards.&lt;/P&gt;&lt;P&gt;Raman Khurana.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Dec 2008 11:23:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-migration-from-csv-file-to-database-table/m-p/4879301#M1140433</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-19T11:23:53Z</dc:date>
    </item>
    <item>
      <title>Re: Data Migration from CSV file to Database Table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-migration-from-csv-file-to-database-table/m-p/4879302#M1140434</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;&lt;/P&gt;&lt;P&gt;check this documentation&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/eb/8c683c8de8a969e10000000a114084/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/eb/8c683c8de8a969e10000000a114084/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aakash Banga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Dec 2008 11:37:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-migration-from-csv-file-to-database-table/m-p/4879302#M1140434</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-19T11:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: Data Migration from CSV file to Database Table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-migration-from-csv-file-to-database-table/m-p/4879303#M1140435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;If you are using GUI_UPLOAD, you might have missed to make has_field_separator  as 'X'.&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'GUI_UPLOAD'
  EXPORTING
   filename                      = 'C:\File.csv'
   filetype                      = 'ASC'
   has_field_separator           = ' X'  "&amp;lt;= Set this as 'X'.

  TABLES
    data_tab                      = itab.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manoj Kumar P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Dec 2008 11:55:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-migration-from-csv-file-to-database-table/m-p/4879303#M1140435</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-19T11:55:10Z</dc:date>
    </item>
    <item>
      <title>Re: Data Migration from CSV file to Database Table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-migration-from-csv-file-to-database-table/m-p/4879304#M1140436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go throw this link &lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapfans.com/forums/viewtopic.php?f=13&amp;amp;t=193187" target="test_blank"&gt;http://www.sapfans.com/forums/viewtopic.php?f=13&amp;amp;t=193187&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Dec 2008 12:04:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-migration-from-csv-file-to-database-table/m-p/4879304#M1140436</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-19T12:04:09Z</dc:date>
    </item>
    <item>
      <title>Re: Data Migration from CSV file to Database Table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-migration-from-csv-file-to-database-table/m-p/4879305#M1140437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manoj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your input.&lt;/P&gt;&lt;P&gt;I tried with Separator 'X' also but still i am facing the same issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Raman khurana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Dec 2008 05:53:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-migration-from-csv-file-to-database-table/m-p/4879305#M1140437</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-22T05:53:43Z</dc:date>
    </item>
  </channel>
</rss>

