<?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: function ws_upload error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657420#M1445770</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you try making ALL the fields in your internal table type CHAR instead of CURR.  Then as you loop thru the table move the CHAR fields to you CURR fields.  At lease give it a try.  Seems pretty suspicious that the CHAR fields load fine but the CURR fields don't.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Mar 2010 17:27:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-03-17T17:27:57Z</dc:date>
    <item>
      <title>function ws_upload error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657405#M1445755</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 am uploading a file through function module 'WS_UPLOAD'  but it does not uploads everything.&lt;/P&gt;&lt;P&gt;It just uploads first 7 fields .&lt;/P&gt;&lt;P&gt;                                  The file which i am uploading is a tab delimited file .Here is my code .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: pathname type rlgrap-filename,
         filename type rlgrap-filename,
         file_length type n.

  data:  tmp_filename type rlgrap-filename,
         ftype type rlgrap-filetype.



* Get the file name
  clear pathname.

*      perform get_filename using filename 'O' changing pathname.

      call function 'WS_FILENAME_GET'
        exporting
          def_filename     = filename
          def_path         = pathname
          mask             = ',*.*,*.*.'
          mode             = 'O'
        importing
          filename         = tmp_filename
        exceptions
          inv_winsys       = 01
          no_batch         = 02
          selection_cancel = 03
          selection_error  = 04.

      if sy-subrc = 0.
        pathname = tmp_filename.
      endif.


      ftype = 'DAT'.
* Upload the data from the mentioned file name
      if not pathname is initial.
*        perform upload using pathname ftype file_length.

        call function 'WS_UPLOAD'
          exporting
            codepage                = 'IBM'
            filename                = pathname
            filetype                = ftype
            user_form               = ' '
            user_prog               = ' '
            dat_d_format            = ' '
          importing
            filelength              = file_length
          tables
            data_tab                = user_temp_tab
          exceptions
            conversion_error        = 1
            file_open_error         = 2
            file_read_error         = 3
            invalid_type            = 4
            no_batch                = 5
            unknown_error           = 6
            invalid_table_width     = 7
            gui_refuse_filetransfer = 8
            customer_error          = 9
            others                  = 10.

      endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone tell me the reason for this because i am using this function in a BADI  to upload the data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 09:34:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657405#M1445755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T09:34:15Z</dc:date>
    </item>
    <item>
      <title>Re: function ws_upload error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657406#M1445756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;WS_UPLOAD is an obsolete FM &amp;amp; should not be used. Instead use GUI_UPLOAD &amp;amp; pass the HAS_FIELD_SEPARATOR = 'X' while calling the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 09:36:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657406#M1445756</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-03-17T09:36:44Z</dc:date>
    </item>
    <item>
      <title>Re: function ws_upload error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657407#M1445757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Even if its old &amp;amp; obsolete, it will NOT stop after the seventh column.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 09:39:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657407#M1445757</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2010-03-17T09:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: function ws_upload error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657408#M1445758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Rainer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the horizontal tabs in the file are the culprit. I am not sure if WS_UPLOAD has the importing param HAS_FIELD_SEPARATOR (currently i cannot login into my SAP server) so i suggested GUI_UPLOAD &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 09:43:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657408#M1445758</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-03-17T09:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: function ws_upload error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657409#M1445759</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;Can u tell that if  there  is any other format which would work with this function  module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 09:46:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657409#M1445759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T09:46:17Z</dc:date>
    </item>
    <item>
      <title>Re: function ws_upload error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657410#M1445760</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;It still does not work with gui_upload function module.Still first 7 fields are coming not the rest . I have a total of 19 fields.&lt;/P&gt;&lt;P&gt;After 7th field there are numbers which are not being loaded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amber&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 10:14:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657410#M1445760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T10:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: function ws_upload error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657411#M1445761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is the internal table defined in a way so that it can handle all the 19 fields ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyways can you paste the declaration of your internal table into which you are uploading the data &amp;amp; the call to GUI_UPLOAD ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 10:17:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657411#M1445761</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-03-17T10:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: function ws_upload error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657412#M1445762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes the file format is right and it has 19 fields in same order as there are in the file which i am uploading and the table is already decleared in the standard program so it does not let me create one with the same name in my BADI .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;amber&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 10:31:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657412#M1445762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T10:31:55Z</dc:date>
    </item>
    <item>
      <title>Re: function ws_upload error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657413#M1445763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are uploading a tab delimited file why are you using a codepage = 'IBM' &amp;amp; filetype = 'DAT' ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 10:58:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657413#M1445763</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-03-17T10:58:37Z</dc:date>
    </item>
    <item>
      <title>Re: function ws_upload error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657414#M1445764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amber,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you post the type declaration for the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Gopal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 11:02:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657414#M1445764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T11:02:47Z</dc:date>
    </item>
    <item>
      <title>Re: function ws_upload error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657415#M1445765</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;Please check value of file_length. &lt;/P&gt;&lt;P&gt;This might be creating problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 11:20:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657415#M1445765</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T11:20:07Z</dc:date>
    </item>
    <item>
      <title>Re: function ws_upload error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657416#M1445766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amber Bhaita,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As per my knowledge, WS_FILENAME_GET is also Obsolete. So you have to replace it with appropriate one i.e. with using class CL_GUI_FRONTEND_SERVICES and method file_open_dialog. Then you try. I hope it would work.&lt;/P&gt;&lt;P&gt;As it is taking 7 fields only means it is making mistake in import of data NOT in the code.&lt;/P&gt;&lt;P&gt;Please give feedback whether it works or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Harish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 12:04:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657416#M1445766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T12:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: function ws_upload error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657417#M1445767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA: BEGIN OF WA_MARA,&lt;/P&gt;&lt;P&gt;        matnr type matnr,&lt;/P&gt;&lt;P&gt;      END OF WA_MARA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: FF_PATH     TYPE STRING.&lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;P&gt;FF_PATH = 'C:\Documents and Settings\Desktop\VIG.txt'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: IT_MARA LIKE TABLE OF WA_MARA WITH HEADER LINE .&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GUI_UPLOAD'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    FILENAME            = FF_PATH&lt;/P&gt;&lt;P&gt;    FILETYPE            = 'ASC'&lt;/P&gt;&lt;P&gt;    HAS_FIELD_SEPARATOR = ' '&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    DATA_TAB            = IT_MARA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE / 'the uploaded records in the internal table are'.&lt;/P&gt;&lt;P&gt;WRITE /.&lt;/P&gt;&lt;P&gt;LOOP AT IT_MARA.&lt;/P&gt;&lt;P&gt;  WRITE: / IT_MARA.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 15:26:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657417#M1445767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T15:26:50Z</dc:date>
    </item>
    <item>
      <title>Re: function ws_upload error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657418#M1445768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do you see that it is only uploading the first seven fields? In debugging, what do you see if you enter say the eighth field at the beginning of the display?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 15:39:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657418#M1445768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T15:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: function ws_upload error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657419#M1445769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I cannot put the 8th and any fields after that in the beginning as the fields from 8th till 19 are all of type CURR and the ones in the beginning are either CHAR or NUMC type . I tried putting some values in the first 4 fields still 8th(including 8th) field onwards it does not take any value ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 17:13:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657419#M1445769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T17:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: function ws_upload error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657420#M1445770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you try making ALL the fields in your internal table type CHAR instead of CURR.  Then as you loop thru the table move the CHAR fields to you CURR fields.  At lease give it a try.  Seems pretty suspicious that the CHAR fields load fine but the CURR fields don't.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 17:27:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657420#M1445770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T17:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: function ws_upload error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657421#M1445771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried uploading the file in another desktop and it is uploading fine in the development server with ws_upload but not in the quality and production server .&lt;/P&gt;&lt;P&gt;As someone told me above to check the file_lenght and it was 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amber&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Mar 2010 08:23:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657421#M1445771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-18T08:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: function ws_upload error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657422#M1445772</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;If the declaration of the internal table is from any table, then  check whether the table has those many fields in both development systems and production system, as you are telling it is working fine in development system and not in quality and production system. there may be chances for some of the field addition changes not moved to other systems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Gopal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Mar 2010 09:51:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657422#M1445772</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-18T09:51:17Z</dc:date>
    </item>
    <item>
      <title>Re: function ws_upload error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657423#M1445773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's done . There was a problem with saving the file .&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;Amber&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Apr 2010 10:11:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-ws-upload-error/m-p/6657423#M1445773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-21T10:11:33Z</dc:date>
    </item>
  </channel>
</rss>

