<?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: Problem with GUI_UPLOAD in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3531961#M849683</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kindly check this function module the internal table got after file upload is having string format (DATA_TAB). hence whenever the internal file will having numeric field it will create error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GUI_UPLOAD'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    FILENAME                      = i_fname&lt;/P&gt;&lt;P&gt;    DAT_MODE                      = 'X'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    DATA_TAB                      = mt_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try function module UPLOAD. It  will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Mar 2008 09:54:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-12T09:54:25Z</dc:date>
    <item>
      <title>Problem with GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3531955#M849677</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;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i import data from a tab delimited file, with the function module GUI_UPLOAD,  i always get the BAD_DATA_FORMAT error. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have notice that the field who causes the problem is a numeric field(EX: 12.50). If i put only 1250, the problem disappear. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before i use this function module i use another that is now obsolete WS_UPLOAD, and with this old... function it works very well... the numeric field is convert into the correct format to the internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Us suggested by SAP, we must use the new function module GUI_UPLOAD. &lt;/P&gt;&lt;P&gt;But if we need to change all the programs that use the old WS_UPLOAD to the new one... we must create new internal tables only with char fields and the pass this data to the existent table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anybody has a clue? or not? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance &lt;/P&gt;&lt;P&gt;AOL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 19:08:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3531955#M849677</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T19:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3531956#M849678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post your internal table declaration and whic field is failing? Most likely is a P data type without decimal points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 19:11:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3531956#M849678</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T19:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3531957#M849679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The field has the data element ERFMG.&lt;/P&gt;&lt;P&gt;Data type QUAN with 3 decimals.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;AOL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 19:16:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3531957#M849679</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T19:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3531958#M849680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post all the code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 19:22:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3531958#M849680</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T19:22:36Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3531959#M849681</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;Try replacing the . (dot) with , (comma) in a number.&lt;/P&gt;&lt;P&gt;So not 12.50 but 12,50.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Mat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 19:26:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3531959#M849681</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T19:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3531960#M849682</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;all this thinks were tested, in the GUI_UPLOAD doesn,t work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What i need to know is: is obligatory move the quantity fields from the source table to text fields in the abap table.&lt;/P&gt;&lt;P&gt;And after that pass to other table with the correspondig fields in quantity format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;AOL.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 09:44:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3531960#M849682</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T09:44:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3531961#M849683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kindly check this function module the internal table got after file upload is having string format (DATA_TAB). hence whenever the internal file will having numeric field it will create error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GUI_UPLOAD'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    FILENAME                      = i_fname&lt;/P&gt;&lt;P&gt;    DAT_MODE                      = 'X'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    DATA_TAB                      = mt_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try function module UPLOAD. It  will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 09:54:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3531961#M849683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T09:54:25Z</dc:date>
    </item>
  </channel>
</rss>

