<?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: Reading (processing) .dbf file from SAP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-processing-dbf-file-from-sap/m-p/1814711#M349005</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi !&lt;/P&gt;&lt;P&gt;You may have a look to a tool such as "CDBF for Windows" is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just have a look herer&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.whitetown.com/cdbf/" target="test_blank"&gt;http://www.whitetown.com/cdbf/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ther's also a "console" and a linux version !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rainer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some points would be nice if that helped.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Jan 2007 05:55:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-22T05:55:14Z</dc:date>
    <item>
      <title>Reading (processing) .dbf file from SAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-processing-dbf-file-from-sap/m-p/1814709#M349003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We are developing an interface that requires the ABAP program to process a .dbf (dBASE, FoxPro) file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please suggest on accessing and processing .dbf file from SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additional Information:&lt;/P&gt;&lt;P&gt;SAP Version: SAP 4.7&lt;/P&gt;&lt;P&gt;Platform:    HP-UNIX&lt;/P&gt;&lt;P&gt;Database:    Oracle&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(We get the .dbf file on to the network. I came across on the web someone suggesting using a script to convert the .dbf file to text or csv file  . Can you please suggest on how to process using script, if you have done it on Windows or UNIX platform).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vidya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Jan 2007 18:50:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-processing-dbf-file-from-sap/m-p/1814709#M349003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-21T18:50:55Z</dc:date>
    </item>
    <item>
      <title>Re: Reading (processing) .dbf file from SAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-processing-dbf-file-from-sap/m-p/1814710#M349004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gui upload with binary option.&lt;/P&gt;&lt;P&gt;data: dbf_tab type standard table of solix .&lt;/P&gt;&lt;P&gt; call function 'GUI_UPLOAD'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      filename            = filename&lt;/P&gt;&lt;P&gt;      filetype            = 'BIN'&lt;/P&gt;&lt;P&gt;      has_field_separator = ' '&lt;/P&gt;&lt;P&gt;      header_length       = 0&lt;/P&gt;&lt;P&gt;    importing&lt;/P&gt;&lt;P&gt;      filelength          = size&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      data_tab            = dbf_tab&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      others              = 1.&lt;/P&gt;&lt;P&gt;if size &amp;gt; 0 .&lt;/P&gt;&lt;P&gt;data: ftext_tab type standard table of soli .&lt;/P&gt;&lt;P&gt;call function 'SCMS_BINARY_TO_FTEXT'&lt;/P&gt;&lt;P&gt;  exporting&lt;/P&gt;&lt;P&gt;    input_length          = size&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FIRST_LINE            = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  LAST_LINE             = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  APPEND_TO_TABLE       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MIMETYPE              = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OUTPUT_LENGTH         = OUTPUT_LENGTH&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  tables&lt;/P&gt;&lt;P&gt;    binary_tab            = dbf_tab&lt;/P&gt;&lt;P&gt;    ftext_tab             = ftext_tab&lt;/P&gt;&lt;P&gt; exceptions&lt;/P&gt;&lt;P&gt;   failed                = 1&lt;/P&gt;&lt;P&gt;   others                = 2&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jan 2007 05:54:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-processing-dbf-file-from-sap/m-p/1814710#M349004</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-01-22T05:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: Reading (processing) .dbf file from SAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-processing-dbf-file-from-sap/m-p/1814711#M349005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi !&lt;/P&gt;&lt;P&gt;You may have a look to a tool such as "CDBF for Windows" is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just have a look herer&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.whitetown.com/cdbf/" target="test_blank"&gt;http://www.whitetown.com/cdbf/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ther's also a "console" and a linux version !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rainer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some points would be nice if that helped.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jan 2007 05:55:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-processing-dbf-file-from-sap/m-p/1814711#M349005</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-22T05:55:14Z</dc:date>
    </item>
  </channel>
</rss>

