<?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 query in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/query/m-p/1713359#M311965</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi guyz,&lt;/P&gt;&lt;P&gt;can anybody plz tell me how to upload data in my c drive into sap database table.&lt;/P&gt;&lt;P&gt;this is a zipcode file.&lt;/P&gt;&lt;P&gt;I created a database table in se11.&lt;/P&gt;&lt;P&gt;i need it asap.&lt;/P&gt;&lt;P&gt;plz help me&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Nov 2006 22:51:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-21T22:51:52Z</dc:date>
    <item>
      <title>query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/query/m-p/1713359#M311965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi guyz,&lt;/P&gt;&lt;P&gt;can anybody plz tell me how to upload data in my c drive into sap database table.&lt;/P&gt;&lt;P&gt;this is a zipcode file.&lt;/P&gt;&lt;P&gt;I created a database table in se11.&lt;/P&gt;&lt;P&gt;i need it asap.&lt;/P&gt;&lt;P&gt;plz help me&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Nov 2006 22:51:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/query/m-p/1713359#M311965</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-21T22:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: query</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/query/m-p/1713360#M311966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well the easiest way is to write a quick program which uploads the data to an internal table, then you can fill the database table .  A short program may look like this, here ZTABLE is your custom table and it is assumed that the file is comma delimited.  I find it easier to work with this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001.

data: istr_tab type table of string with header line.
data: xztable type ztable.

call function 'GUI_UPLOAD'
     exporting
          filename = 'c:ztable.txt'
     tables
          data_tab = istr_tab.


loop at istr_tab.
  split istr_tab at ',' into xztable-fld1 xztable-fld2 xztable-fld3.
  insert ztable from xztable.
endloop.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Nov 2006 23:10:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/query/m-p/1713360#M311966</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-11-21T23:10:15Z</dc:date>
    </item>
  </channel>
</rss>

