<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644752#M877700</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi MICKY,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for valuable suggestion.....can i have ur mail id so that i can send u my file which i am uploading so that u can try it.....please do this for me.....as i am not getting any idea for this simple uploading i dont know where i am getting error....i will send u file...if you dont have any concerns...let me know your id....please&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance...!&lt;/P&gt;&lt;P&gt;Brahma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Apr 2008 14:58:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-17T14:58:49Z</dc:date>
    <item>
      <title>GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644742#M877690</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 which is have 587 width, i have used declaration of string for the internal table but i am not getting complete data...here the code is below....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF data_all OCCURS 0,&lt;/P&gt;&lt;P&gt;       all type string ,&lt;/P&gt;&lt;P&gt;      END OF data_all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF p_fname IS INITIAL.&lt;/P&gt;&lt;P&gt;    MESSAGE i150(pn).&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    MOVE p_fname TO fname.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'GUI_UPLOAD'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;      filename                      = FNAME&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      data_tab                      = data_all.&lt;/P&gt;&lt;P&gt;so please let me know y i am not getting complete data.....in the &lt;STRONG&gt;data_all&lt;/STRONG&gt; internal table which is in the file.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 12:52:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644742#M877690</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-17T12:52:34Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644743#M877691</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;You r not getting the file into P_file .&lt;/P&gt;&lt;P&gt;for this use f4_filename.&lt;/P&gt;&lt;P&gt;then move p_file into the string type variable then pass it into the GUI_Upload.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For uploading the flat file on ur presentation server use GUI_upload .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then ur problem may be solve.&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 = FNAME&lt;/P&gt;&lt;P&gt;filetype = 'ASC'&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;data_tab = data_all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward If Helpful.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jagadish.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 13:25:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644743#M877691</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-17T13:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644744#M877692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also give filetype&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 = FNAME&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;filetype = 'ASC'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;data_tab = data_all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 13:28:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644744#M877692</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-17T13:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644745#M877693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Jagdish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i already assigned the p_fname to the string type variable(fname) and then i had passed to to the gui_upload.....but here my question is as i am uploading the data but i am getting only length upto 256 characters in the table output of the gui_upload......more than 256 characters per line is existing in my uploading file....but i am not getting the complete data.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chandu: as file type is default 'asc' i think there is no need of providing the file type.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;guys anyone who knows please help me out of this....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance...!&lt;/P&gt;&lt;P&gt;brahma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 13:45:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644745#M877693</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-17T13:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644746#M877694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use file_type as 'DBF'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Imran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 13:48:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644746#M877694</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-17T13:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644747#M877695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;1.Specify the length of string.&lt;/P&gt;&lt;P&gt;eg: DATA: BEGIN OF data_all OCCURS 0,&lt;/P&gt;&lt;P&gt;all(255) type string ,&lt;/P&gt;&lt;P&gt;END OF data_all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.Give the file name and file type in the function module.&lt;/P&gt;&lt;P&gt;   FILENAME                      = 'D:\ABAP EVE\file1.txt'&lt;/P&gt;&lt;P&gt;   FILETYPE                      = 'ASC'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward,if useful.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chandu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 13:52:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644747#M877695</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-17T13:52:37Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644748#M877696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi imran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it is throwing sy-subrc 5, which is the file type is wrong.....but here i think it is not a problem...but i think in the declaration part some thing is wrong as i had declared the type which i had shown in above...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAPers please help out....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance...!&lt;/P&gt;&lt;P&gt;Brahma.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 13:54:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644748#M877696</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-17T13:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644749#M877697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I copied your code and tried it, and it works just fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I upload a text file with variable length, where one line has 429 characters!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you sure about the line size of your file? Doesn't it have a string in which a Carriage Return Line Feed is incorporated (hexadecimal value perhaps). What do you see when you open your file with notepad / wordpad?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Micky Oestreich on Apr 17, 2008 4:52 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 14:51:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644749#M877697</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-04-17T14:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644750#M877698</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;Any one who knows about this....please help me out.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance...!&lt;/P&gt;&lt;P&gt;Brahma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 14:52:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644750#M877698</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-17T14:52:00Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644751#M877699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi boss if you had already known the field then you can use the length of the field why you r using the string ( may be some cases the string takes the value 256 in length ) . if you dont know the length ..then use this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT zc1download message-id zc1dwnmsg.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Declaration Section for the Tables *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: makt.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Declaration Section for the Internal Tables&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: intab TYPE TABLE OF makt,&lt;/P&gt;&lt;P&gt;wa_intab LIKE LINE OF intab,&lt;/P&gt;&lt;P&gt;no_of_rec TYPE i,&lt;/P&gt;&lt;P&gt;count TYPE i.&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF f_intab,&lt;/P&gt;&lt;P&gt;str(255) TYPE c,&lt;/P&gt;&lt;P&gt;END OF f_intab.&lt;/P&gt;&lt;P&gt;DATA: t_intab LIKE TABLE OF f_intab,&lt;/P&gt;&lt;P&gt;w_intab LIKE LINE OF t_intab,&lt;/P&gt;&lt;P&gt;temp(255) TYPE c.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;f&amp;gt; TYPE ANY.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Selection ScreenSection for the file download&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;PARAMETERS: file TYPE rlgrap-filename MEMORY ID file,&lt;/P&gt;&lt;P&gt;tab RADIOBUTTON GROUP rad1 DEFAULT 'X',&lt;/P&gt;&lt;P&gt;others RADIOBUTTON GROUP rad1,&lt;/P&gt;&lt;P&gt;delimit TYPE c.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;IF file IS INITIAL. " check to ensure file.&lt;/P&gt;&lt;P&gt;MESSAGE i001.&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;IF others = 'X'. " check to ensure delimiter.&lt;/P&gt;&lt;P&gt;IF delimit = ' '.&lt;/P&gt;&lt;P&gt;MESSAGE i002.&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;SELECT * FROM makt INTO TABLE intab.&lt;/P&gt;&lt;P&gt;IF tab = 'X'. " default delimiter tab is used&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'WS_DOWNLOAD'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;filename = file&lt;/P&gt;&lt;P&gt;filetype = 'DAT'&lt;/P&gt;&lt;P&gt;mode = 'A'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;data_tab = intab&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;file_open_error = 1&lt;/P&gt;&lt;P&gt;file_write_error = 2&lt;/P&gt;&lt;P&gt;invalid_filesize = 3&lt;/P&gt;&lt;P&gt;invalid_type = 4&lt;/P&gt;&lt;P&gt;no_batch = 5&lt;/P&gt;&lt;P&gt;unknown_error = 6&lt;/P&gt;&lt;P&gt;invalid_table_width = 7&lt;/P&gt;&lt;P&gt;gui_refuse_filetransfer = 8&lt;/P&gt;&lt;P&gt;customer_error = 9&lt;/P&gt;&lt;P&gt;no_authority = 10&lt;/P&gt;&lt;P&gt;OTHERS = 11.&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;P&gt;WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ELSE. " If user defind delimiter is to be used&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Counts the number of fields *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DO.&lt;/P&gt;&lt;P&gt;ASSIGN COMPONENT sy-index OF STRUCTURE wa_intab TO &amp;lt;f&amp;gt;.&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;count = count + 1.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;LOOP AT intab INTO wa_intab.&lt;/P&gt;&lt;P&gt;DO count TIMES. " Adding the delimiter in required places&lt;/P&gt;&lt;P&gt;ASSIGN COMPONENT sy-index OF STRUCTURE wa_intab TO &amp;lt;f&amp;gt;.&lt;/P&gt;&lt;P&gt;CONCATENATE temp delimit &amp;lt;f&amp;gt; INTO temp.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;SHIFT temp.&lt;/P&gt;&lt;P&gt;APPEND temp TO t_intab.&lt;/P&gt;&lt;P&gt;CLEAR temp.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'WS_DOWNLOAD'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;filename = file&lt;/P&gt;&lt;P&gt;filetype = 'ASC'&lt;/P&gt;&lt;P&gt;mode = 'A'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;data_tab = t_intab  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE:/ 'The Data has been tranfered to :', 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;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 14:56:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644751#M877699</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-17T14:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644752#M877700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi MICKY,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for valuable suggestion.....can i have ur mail id so that i can send u my file which i am uploading so that u can try it.....please do this for me.....as i am not getting any idea for this simple uploading i dont know where i am getting error....i will send u file...if you dont have any concerns...let me know your id....please&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance...!&lt;/P&gt;&lt;P&gt;Brahma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 14:58:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644752#M877700</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-17T14:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644753#M877701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can, click on my name (link) on the left and you know where to send it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MAKE SURE IT'S NOT TOOOOO BIG, only need a few records for testing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Micky Oestreich on Apr 17, 2008 5:15 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 15:11:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644753#M877701</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-04-17T15:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644754#M877702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Bramha,&lt;/P&gt;&lt;P&gt;please have a look on this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;types: begin of ty_down,
       i_length(600) type C,
       end of ty_down.

data: down type table of ty_down.
data typety type STRING.
typety = p_pfile.

CALL FUNCTION 'GUI_UPLOAD'
  EXPORTING
*   BIN_FILESIZE                    =
    FILENAME                        = typety
   FILETYPE                        = 'ASC'
TABLES
    DATA_TAB                        =  down

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 15:13:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644754#M877702</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-17T15:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644755#M877703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks guys it has been resolved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Apr 2008 13:04:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/3644755#M877703</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-18T13:04:20Z</dc:date>
    </item>
  </channel>
</rss>

