<?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: Reg: default  file type when using 'WS_UPLOAD' in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-default-file-type-when-using-ws-upload/m-p/2373385#M526019</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The default is ASC, you can find that in the function module code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Jun 2007 14:23:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-04T14:23:54Z</dc:date>
    <item>
      <title>Reg: default  file type when using 'WS_UPLOAD'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-default-file-type-when-using-ws-upload/m-p/2373384#M526018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Iam using FM 'WS_UPLOAD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my doubt is : If u don't specify FILE TYPE ....what is default file type it is going 2 take.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vaja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2007 14:21:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-default-file-type-when-using-ws-upload/m-p/2373384#M526018</guid>
      <dc:creator>mallikarjun_vaja</dc:creator>
      <dc:date>2007-06-04T14:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: default  file type when using 'WS_UPLOAD'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-default-file-type-when-using-ws-upload/m-p/2373385#M526019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The default is ASC, you can find that in the function module code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2007 14:23:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-default-file-type-when-using-ws-upload/m-p/2373385#M526019</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-04T14:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: default  file type when using 'WS_UPLOAD'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-default-file-type-when-using-ws-upload/m-p/2373386#M526020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mallikarjun,&lt;/P&gt;&lt;P&gt;The default file type for the FM WS_UPLOAD is 'ASC'.&lt;/P&gt;&lt;P&gt;It'll take the ASCII format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anil Madhavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2007 14:25:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-default-file-type-when-using-ws-upload/m-p/2373386#M526020</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-04T14:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: default  file type when using 'WS_UPLOAD'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-default-file-type-when-using-ws-upload/m-p/2373387#M526021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sudha,&lt;/P&gt;&lt;P&gt;thanks for ur answer. &lt;/P&gt;&lt;P&gt;Plz look into this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have program with  internal table declared as below with 2 fields.&lt;/P&gt;&lt;P&gt;when i specify the input file using   FILENAME =  P_FILE.....&lt;/P&gt;&lt;P&gt;the input file has only one field values(i.e. only matnr values).&lt;/P&gt;&lt;P&gt;So, I am getting error : "unable to load input file".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so my query is Can i specify input file with only matnr values and download into internal table (ITAB_MATNR--which has 2 fields)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF ITAB_MATNR OCCURS 0,&lt;/P&gt;&lt;P&gt;        MATNR LIKE MARA-MATNR,&lt;/P&gt;&lt;P&gt;        COUNT TYPE I,&lt;/P&gt;&lt;P&gt;      END OF ITAB_MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'WS_UPLOAD'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;           FILENAME                = P_FILE&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        filetype                = ftype&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            DATA_TAB                = ITAB_MATNR&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;           CONVERSION_ERROR        = 1&lt;/P&gt;&lt;P&gt;           FILE_OPEN_ERROR         = 2&lt;/P&gt;&lt;P&gt;           FILE_READ_ERROR         = 3&lt;/P&gt;&lt;P&gt;           INVALID_TABLE_WIDTH     = 4&lt;/P&gt;&lt;P&gt;           INVALID_TYPE            = 5&lt;/P&gt;&lt;P&gt;           NO_BATCH                = 6&lt;/P&gt;&lt;P&gt;           UNKNOWN_ERROR           = 7&lt;/P&gt;&lt;P&gt;           GUI_REFUSE_FILETRANSFER = 8&lt;/P&gt;&lt;P&gt;           OTHERS                  = 9.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE E699(PP) WITH 'Unable to load input file' P_FILE.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2007 14:56:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-default-file-type-when-using-ws-upload/m-p/2373387#M526021</guid>
      <dc:creator>mallikarjun_vaja</dc:creator>
      <dc:date>2007-06-04T14:56:07Z</dc:date>
    </item>
  </channel>
</rss>

