<?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: GUI_UPLOAD FM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274326#M1530601</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is solved by removing the heading details from Notepad file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Sep 2010 14:39:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-09-13T14:39:51Z</dc:date>
    <item>
      <title>GUI_UPLOAD FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274314#M1530589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; Im trying to upload a Notepad file using FM GUI_UPLOAD.I have total 255 columns. Im getting the error as Access Denied(13 exception)The following is my code. please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data p_apfile LIKE rlgrap-filename.

    DATA: lv_filepath TYPE string.     
    lv_filepath = p_apfile.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I_EXTRACT1 is an Internal table which has got 255 columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename                      = lv_filepath
       filetype                      = 'ASC'
      TABLES
        data_tab                      = i_extract1
     EXCEPTIONS
       file_open_error               = 1
       file_read_error               = 2
       no_batch                      = 3
       gui_refuse_filetransfer       = 4
       invalid_type                  = 5
       no_authority                  = 6
       unknown_error                 = 7
       bad_data_format               = 8
       header_not_allowed            = 9
       separator_not_allowed         = 10
       header_too_long               = 11
       unknown_dp_error              = 12
       access_denied                 = 13
       dp_out_of_memory              = 14
       disk_full                     = 15
       dp_timeout                    = 16
       OTHERS                        = 17.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Deepthi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on Sep 13, 2010 1:52 PM - code tags added&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Sep 2010 11:49:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274314#M1530589</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-13T11:49:55Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274315#M1530590</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;Make sure that file is not open already.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Sep 2010 11:51:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274315#M1530590</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-13T11:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274316#M1530591</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;The file is not opned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have also tried another way of uploading data as below but still it gives aceess_denied issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DATA: lv_filepath TYPE string,&lt;/P&gt;&lt;P&gt;          li_head     TYPE xstring.&lt;/P&gt;&lt;P&gt;    CLEAR: lv_filepath, li_head.&lt;/P&gt;&lt;P&gt;    lv_filepath = p_apfile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types : begin of t_data,&lt;/P&gt;&lt;P&gt;          line TYPE string,&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          line(400),&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          end of t_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: i_data type standard table of t_data.&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                      = lv_filepath&lt;/P&gt;&lt;P&gt;       filetype                      = 'ASC'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        data_tab                      = i_data    "i_extract1[]&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;       file_open_error               = 1&lt;/P&gt;&lt;P&gt;       file_read_error               = 2&lt;/P&gt;&lt;P&gt;       no_batch                      = 3&lt;/P&gt;&lt;P&gt;       gui_refuse_filetransfer       = 4&lt;/P&gt;&lt;P&gt;       invalid_type                  = 5&lt;/P&gt;&lt;P&gt;       no_authority                  = 6&lt;/P&gt;&lt;P&gt;       unknown_error                 = 7&lt;/P&gt;&lt;P&gt;       bad_data_format               = 8&lt;/P&gt;&lt;P&gt;       header_not_allowed            = 9&lt;/P&gt;&lt;P&gt;       separator_not_allowed         = 10&lt;/P&gt;&lt;P&gt;       header_too_long               = 11&lt;/P&gt;&lt;P&gt;       unknown_dp_error              = 12&lt;/P&gt;&lt;P&gt;       access_denied                 = 13&lt;/P&gt;&lt;P&gt;       dp_out_of_memory              = 14&lt;/P&gt;&lt;P&gt;       disk_full                     = 15&lt;/P&gt;&lt;P&gt;       dp_timeout                    = 16&lt;/P&gt;&lt;P&gt;       OTHERS                        = 17.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Sep 2010 12:03:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274316#M1530591</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-13T12:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274317#M1530592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe you don't have permissions for working with this file or file doesn't exist.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Sep 2010 12:24:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274317#M1530592</guid>
      <dc:creator>AlexanderOv</dc:creator>
      <dc:date>2010-09-13T12:24:40Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274318#M1530593</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;1. File is already open while you trying to upload.&lt;/P&gt;&lt;P&gt;2. Check the place where you would have saved the file .&lt;/P&gt;&lt;P&gt;3.Else try to upload a excel file and check fi you face the same issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Sep 2010 12:37:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274318#M1530593</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-13T12:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274319#M1530594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One tricky option would be, Try to copy the file and place it on your desktop and try to upload the data now..&lt;/P&gt;&lt;P&gt;If the file is not open you would be able to upload the file..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Satish Boguda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Sep 2010 12:42:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274319#M1530594</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-13T12:42:24Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274320#M1530595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This exception gets triggered when some one else is trying to access the same file which is already in use.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Sep 2010 12:44:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274320#M1530595</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-09-13T12:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274321#M1530596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kill/End all the tasks for "NOTEPAD" in the task manager and try again, also is this file local to your machine or a file on a file server?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Sep 2010 12:54:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274321#M1530596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-13T12:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274322#M1530597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; When i try to upload file through excel, there is no problem.&lt;/P&gt;&lt;P&gt;I have freshly copied the notepad file into my desktop and tried using gui_upload but still it is not working.&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;Deepthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Sep 2010 12:55:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274322#M1530597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-13T12:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274323#M1530598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the file name getting populated to upload.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Debug the GUI_UPLOAD where it triggers the exception - check with message number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you can access the excel sheet from same place where you are trying to read  the notepad then its fine.&lt;/P&gt;&lt;P&gt;Else You do not have the access to connect to the Presentation server from SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Sep 2010 13:08:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274323#M1530598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-13T13:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274324#M1530599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deeepthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try in this way... From the same file remove some columns ( i would say use some 10 columns and try to upload the file )&lt;/P&gt;&lt;P&gt;Check are you getting the same error now or not..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Satish Boguda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Sep 2010 13:17:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274324#M1530599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-13T13:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274325#M1530600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  I have removed the Heading rows and tried to upload data. now, it is working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DATA: lv_filepath TYPE string,&lt;/P&gt;&lt;P&gt;          li_head     TYPE xstring.&lt;/P&gt;&lt;P&gt;    CLEAR: lv_filepath, li_head.&lt;/P&gt;&lt;P&gt;    lv_filepath = p_apfile.&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                = lv_filepath&lt;/P&gt;&lt;P&gt;        filetype                = 'ASC'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        data_tab                = i_data&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        file_open_error         = 1&lt;/P&gt;&lt;P&gt;        file_read_error         = 2&lt;/P&gt;&lt;P&gt;        no_batch                = 3&lt;/P&gt;&lt;P&gt;        gui_refuse_filetransfer = 4&lt;/P&gt;&lt;P&gt;        invalid_type            = 5&lt;/P&gt;&lt;P&gt;        no_authority            = 6&lt;/P&gt;&lt;P&gt;        unknown_error           = 7&lt;/P&gt;&lt;P&gt;        bad_data_format         = 8&lt;/P&gt;&lt;P&gt;        header_not_allowed      = 9&lt;/P&gt;&lt;P&gt;        separator_not_allowed   = 10&lt;/P&gt;&lt;P&gt;        header_too_long         = 11&lt;/P&gt;&lt;P&gt;        unknown_dp_error        = 12&lt;/P&gt;&lt;P&gt;        access_denied           = 13&lt;/P&gt;&lt;P&gt;        dp_out_of_memory        = 14&lt;/P&gt;&lt;P&gt;        disk_full               = 15&lt;/P&gt;&lt;P&gt;        dp_timeout              = 16&lt;/P&gt;&lt;P&gt;        OTHERS                  = 17.&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Split the File at Tab Delimited(#)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    REFRESH: i_extract1[].&lt;/P&gt;&lt;P&gt;    LOOP AT i_data INTO w_data.&lt;/P&gt;&lt;P&gt;      SPLIT w_data-line AT cl_abap_char_utilities=&amp;gt;horizontal_tab INTO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; w_extract1-lifnr   w_extract1-dum2   w_extract1-dum3   w_extract1-dum4    w_extract1-dum5   w_extract1-dum6&lt;/P&gt;&lt;P&gt; w_extract1-dum7    w_extract1-dum8   w_extract1-dum9   w_extract1-dum10   w_extract1-dum11  w_extract1-dum12&lt;/P&gt;&lt;P&gt; w_extract1-dum13   w_extract1-dum14  w_extract1-dum15  w_extract1-dum16   w_extract1-dum17  w_extract1-dum18&lt;/P&gt;&lt;P&gt; w_extract1-dum19   w_extract1-duns   w_extract1-dum21  w_extract1-dum22   w_extract1-dum23  w_extract1-dum24&lt;/P&gt;&lt;P&gt; w_extract1-dum25   w_extract1-dum26  w_extract1-dum27  w_extract1-dum28   w_extract1-dum29  w_extract1-dum30&lt;/P&gt;&lt;P&gt; w_extract1-dum31   w_extract1-dum32  w_extract1-dum33  w_extract1-dum34   w_extract1-dum35  w_extract1-dum36&lt;/P&gt;&lt;P&gt; w_extract1-dum37   w_extract1-dum38  w_extract1-dum39  w_extract1-dum40   w_extract1-dum41  w_extract1-dum42&lt;/P&gt;&lt;P&gt; w_extract1-dum43   w_extract1-min    w_extract1-dum45  w_extract1-dum46   w_extract1-min1   w_extract1-dum48&lt;/P&gt;&lt;P&gt; w_extract1-dum49  w_extract1-dum50  w_extract1-dum51   w_extract1-dum52   w_extract1-dum53  w_extract1-dum54&lt;/P&gt;&lt;P&gt; w_extract1-dum55  w_extract1-dum56  w_extract1-dum57   w_extract1-dum58   w_extract1-dum59  w_extract1-dum60&lt;/P&gt;&lt;P&gt; w_extract1-dum61  w_extract1-dum62  w_extract1-dum63   w_extract1-dum64  w_extract1-dum65&lt;/P&gt;&lt;P&gt; w_extract1-dum66   w_extract1-dum67  w_extract1-dum68  w_extract1-dum69   w_extract1-dum70  w_extract1-dum71&lt;/P&gt;&lt;P&gt; w_extract1-dum72   w_extract1-dum73  w_extract1-dum74  w_extract1-dum75   w_extract1-dum76  w_extract1-dum77&lt;/P&gt;&lt;P&gt; w_extract1-dum78   w_extract1-dum79  w_extract1-dum80  w_extract1-dum81   w_extract1-dum82  w_extract1-dum83&lt;/P&gt;&lt;P&gt; w_extract1-dum84   w_extract1-dum85  w_extract1-dum86  w_extract1-dum87   w_extract1-dum88  w_extract1-dum89&lt;/P&gt;&lt;P&gt; w_extract1-womanind w_extract1-dum91 w_extract1-dum92  w_extract1-dum93   w_extract1-dum94  w_extract1-dum95&lt;/P&gt;&lt;P&gt; w_extract1-dum96    w_extract1-dum97 w_extract1-dum98  w_extract1-dum99   w_extract1-dum100 w_extract1-dum101&lt;/P&gt;&lt;P&gt; w_extract1-dum102   w_extract1-dum103 w_extract1-dum104 w_extract1-dum105 w_extract1-dum106 w_extract1-dum107&lt;/P&gt;&lt;P&gt; w_extract1-dum108   w_extract1-dum109 w_extract1-dum110 w_extract1-dum111 w_extract1-dum112 w_extract1-dum113&lt;/P&gt;&lt;P&gt; w_extract1-dum114   w_extract1-dum115 w_extract1-dum116 w_extract1-dum117 w_extract1-dum118 w_extract1-dum119&lt;/P&gt;&lt;P&gt; w_extract1-dum120   w_extract1-dum121 w_extract1-dum122 w_extract1-dum123 w_extract1-dum124 w_extract1-dum125&lt;/P&gt;&lt;P&gt; w_extract1-dum126   w_extract1-dum127 w_extract1-dum128 w_extract1-dum129 w_extract1-dum130 w_extract1-veteran&lt;/P&gt;&lt;P&gt; w_extract1-dum132   w_extract1-dum133 w_extract1-dum134 w_extract1-dum135 w_extract1-dum136 w_extract1-dum137&lt;/P&gt;&lt;P&gt; w_extract1-dum138   w_extract1-dum139 w_extract1-dum140 w_extract1-dum141 w_extract1-dum142 w_extract1-dum143&lt;/P&gt;&lt;P&gt; w_extract1-dum144   w_extract1-dum145 w_extract1-dum146 w_extract1-dum147 w_extract1-dum148 w_extract1-dum149&lt;/P&gt;&lt;P&gt; w_extract1-dum150   w_extract1-dum151 w_extract1-dum152 w_extract1-dum153 w_extract1-dum154 w_extract1-dum155&lt;/P&gt;&lt;P&gt; w_extract1-dbe      w_extract1-dum157 w_extract1-dum158 w_extract1-dum159 w_extract1-dum160 w_extract1-dum161&lt;/P&gt;&lt;P&gt; w_extract1-dum162   w_extract1-dum163 w_extract1-dum164 w_extract1-dum165 w_extract1-dum166 w_extract1-dum167&lt;/P&gt;&lt;P&gt; w_extract1-dum168   w_extract1-dum169 w_extract1-dum170 w_extract1-sdb    w_extract1-dum172 w_extract1-dum173&lt;/P&gt;&lt;P&gt; w_extract1-dum174   w_extract1-dum175 w_extract1-dum176 w_extract1-dum177 w_extract1-8a     w_extract1-dum179&lt;/P&gt;&lt;P&gt; w_extract1-dum180   w_extract1-dum181 w_extract1-dum182 w_extract1-dum183 w_extract1-dum184 w_extract1-dum185&lt;/P&gt;&lt;P&gt; w_extract1-dad      w_extract1-dum187 w_extract1-dum188 w_extract1-dum189 w_extract1-dum190 w_extract1-dum191&lt;/P&gt;&lt;P&gt; w_extract1-dum192   w_extract1-dum193 w_extract1-dum194 w_extract1-dum195 w_extract1-dum196 w_extract1-dum197&lt;/P&gt;&lt;P&gt; w_extract1-dum198   w_extract1-dum199 w_extract1-dum200 w_extract1-hubz   w_extract1-lsa    w_extract1-bmc&lt;/P&gt;&lt;P&gt; w_extract1-smlbus   w_extract1-mbe    w_extract1-wbe    w_extract1-vvt    w_extract1-sdv    w_extract1-vbe&lt;/P&gt;&lt;P&gt; w_extract1-dve      w_extract1-dvb    w_extract1-sic1   w_extract1-sic2   w_extract1-sic3   w_extract1-dum215&lt;/P&gt;&lt;P&gt; w_extract1-dum216   w_extract1-dum217 w_extract1-dum218 w_extract1-dum219 w_extract1-dum220 w_extract1-dum221&lt;/P&gt;&lt;P&gt; w_extract1-dum222   w_extract1-dum223 w_extract1-naics1 w_extract1-naics2 w_extract1-naics3 w_extract1-dum227&lt;/P&gt;&lt;P&gt; w_extract1-dum228   w_extract1-dum229 w_extract1-dum230 w_extract1-dum231 w_extract1-dum232 w_extract1-dum234&lt;/P&gt;&lt;P&gt; w_extract1-dum235   w_extract1-dum236 w_extract1-dum237 w_extract1-dum238 w_extract1-dum239 w_extract1-dum240&lt;/P&gt;&lt;P&gt; w_extract1-dum241   w_extract1-dum242 w_extract1-dum243 w_extract1-dum244 w_extract1-dum245 w_extract1-dum246&lt;/P&gt;&lt;P&gt; w_extract1-dum247   w_extract1-dum248 w_extract1-dum249 w_extract1-dum250 w_extract1-dum251 w_extract1-dum252&lt;/P&gt;&lt;P&gt; w_extract1-dum253   w_extract1-dum254 w_extract1-dum255.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      APPEND w_extract1 TO i_extract1.&lt;/P&gt;&lt;P&gt;      CLEAR w_extract1.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&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;Deepthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Sep 2010 14:38:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274325#M1530600</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-13T14:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274326#M1530601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is solved by removing the heading details from Notepad file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Sep 2010 14:39:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload-fm/m-p/7274326#M1530601</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-13T14:39:51Z</dc:date>
    </item>
  </channel>
</rss>

