<?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: Issue with gui_download function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427961#M1410463</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;             Your point is correct but as the cursor is there one can type any thing in that,which my user does not want.do you have any idea to get rid of this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ANKITA BHARDWAJ on Dec 17, 2009 6:55 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Dec 2009 05:55:09 GMT</pubDate>
    <dc:creator>former_member936723</dc:creator>
    <dc:date>2009-12-17T05:55:09Z</dc:date>
    <item>
      <title>Issue with gui_download function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427894#M1410396</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;         I have an issue with gui_download function module that it is creating one extra line while downloading my internal table data into text file,which i donot want.i have searched for various threads but couldnot get the proper reply.Or please provide me some other Function Module which will not create one extra line.Please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 05:56:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427894#M1410396</guid>
      <dc:creator>former_member936723</dc:creator>
      <dc:date>2009-12-08T05:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with gui_download function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427895#M1410397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankita,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it adding a blank line or line with some data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you plz share your code with us so that we can check if there is any problem with your call?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Avinash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 06:04:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427895#M1410397</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-08T06:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with gui_download function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427896#M1410398</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;GUI_DOWNLOAD only uses data from your internal table to download. So check in the debugging mode if there is a addition blank line in the internal table before passing it to GUI_DOWNLOAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 06:04:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427896#M1410398</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-08T06:04:38Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with gui_download function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427897#M1410399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;its not with gui_download..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        filename                = l_fullpath
        filetype                = 'ASC'
        append                  = 'X'
      TABLES
        data_tab                = t_output  " check this table, this would have the extra line... 
      EXCEPTIONS
        file_write_error        = 1
        no_batch                = 2
        gui_refuse_filetransfer = 3
        invalid_type            = 4
        no_authority            = 5
        unknown_error           = 6
        header_not_allowed      = 7
        separator_not_allowed   = 8
        filesize_not_allowed    = 9
        header_too_long         = 10
        dp_error_create         = 11
        dp_error_send           = 12
        dp_error_write          = 13
        unknown_dp_error        = 14
        access_denied           = 15
        dp_out_of_memory        = 16
        disk_full               = 17
        dp_timeout              = 18
        file_not_found          = 19
        dataprovider_exception  = 20
        control_flush_error     = 21
        OTHERS                  = 22.
    IF sy-subrc &amp;lt;&amp;gt; 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 06:05:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427897#M1410399</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2009-12-08T06:05:29Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with gui_download function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427898#M1410400</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;Is it creating a blank line at the end of file?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Subhashini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 06:05:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427898#M1410400</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-08T06:05:39Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with gui_download function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427899#M1410401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   No my internal table does not contain any extra line.I have already checked it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 06:48:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427899#M1410401</guid>
      <dc:creator>former_member936723</dc:creator>
      <dc:date>2009-12-08T06:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with gui_download function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427900#M1410402</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;What is the type of the file you are trying to download? Also post how you are calling GUI_DOWNLOAD. That might give a clue as to identify whats wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 06:50:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427900#M1410402</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-08T06:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with gui_download function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427901#M1410403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    Yes it is creating one blank line at end of the file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 07:07:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427901#M1410403</guid>
      <dc:creator>former_member936723</dc:creator>
      <dc:date>2009-12-08T07:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with gui_download function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427902#M1410404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ankita 1 points :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)Can you post your code for easy analaysis...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 07:10:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427902#M1410404</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-08T07:10:36Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with gui_download function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427903#M1410405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post the code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 07:10:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427903#M1410405</guid>
      <dc:creator>former_member206377</dc:creator>
      <dc:date>2009-12-08T07:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with gui_download function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427904#M1410406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; Plz check my code below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND IT_OUTPUT -&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt;this is my internal table.&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE IT_OUTPUT LINES ln.&lt;/P&gt;&lt;P&gt;FILE_LEN = LN.----&lt;/P&gt;&lt;HR originaltext="---------" /&gt;&lt;P&gt;I am passinf the internal table legth&lt;/P&gt;&lt;P&gt;  CLEAR IT_OUTPUT.&lt;/P&gt;&lt;P&gt;  IF IT_OUTPUT[] IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CONCATENATE FLN SY-DATUM SY-UZEIT '.txt'&lt;/P&gt;&lt;P&gt;                                        INTO FILEPATH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      FILENAME                        = FILEPATH&lt;/P&gt;&lt;P&gt;      FILETYPE                        = 'ASC'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     WRITE_FIELD_SEPARATOR           = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;       TRUNC_TRAILING_BLANKS           = 'X'&lt;/P&gt;&lt;P&gt;      WK1_T_SIZE                      = FILE_LEN&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     TRUNC_TRAILING_BLANKS_EOL       = ''&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     WRITE_LF                        = ''&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    WRITE_LF_AFTER_LAST_LINE        = ''&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      DATA_TAB                        = IT_OUTPUT&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     OTHERS                          = 22&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 07:14:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427904#M1410406</guid>
      <dc:creator>former_member936723</dc:creator>
      <dc:date>2009-12-08T07:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with gui_download function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427905#M1410407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post your original code how you are filling the internal table and what aexactly are y9ou doing.So we can copy to our systems and check for the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 07:16:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427905#M1410407</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-08T07:16:14Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with gui_download function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427906#M1410408</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;I dont see the use for using the file length here. May be thats the reason for the extra line. Try removing it and check&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
APPEND IT_OUTPUT ---------this is my internal table.
CLEAR IT_OUTPUT.
IF IT_OUTPUT[] IS NOT INITIAL.

CONCATENATE FLN SY-DATUM SY-UZEIT '.txt'
INTO FILEPATH.

CALL FUNCTION 'GUI_DOWNLOAD'
EXPORTING
FILENAME = FILEPATH
FILETYPE = 'ASC'
* WRITE_FIELD_SEPARATOR = 'X'
TRUNC_TRAILING_BLANKS = 'X'
*WK1_T_SIZE = FILE_LEN   " Comment this and check
* TRUNC_TRAILING_BLANKS_EOL = ''
* WRITE_LF = ''
* WRITE_LF_AFTER_LAST_LINE = ''
TABLES
DATA_TAB = IT_OUTPUT
* OTHERS = 22
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 07:21:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427906#M1410408</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-08T07:21:33Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with gui_download function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427907#M1410409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankita,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any requirement to pass the file length?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Usually it is not necessary to pass file length.Try by removing that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Avinash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 07:23:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427907#M1410409</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-08T07:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with gui_download function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427908#M1410410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankita,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is in your file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try using a field separator = 'X' and try.This will only create one tab space and problem will get solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Subhashini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 07:34:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427908#M1410410</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-08T07:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with gui_download function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427909#M1410411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;why dont you try the ws_download?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 07:46:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427909#M1410411</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-08T07:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with gui_download function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427910#M1410412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Clear/ Refresh&lt;/STRONG&gt; the internal table before you use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regs, Arka&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 08:43:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427910#M1410412</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-08T08:43:18Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with gui_download function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427911#M1410413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;    Please check for radio button R4&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message - Please respect the 2,500 character maximum when posting. Post only the relevant portions of code. And use code tags.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rob Burbank on Dec 8, 2009 9:23 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 09:12:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427911#M1410413</guid>
      <dc:creator>former_member936723</dc:creator>
      <dc:date>2009-12-08T09:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with gui_download function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427912#M1410414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No it is still giving the same blank line.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 09:17:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427912#M1410414</guid>
      <dc:creator>former_member936723</dc:creator>
      <dc:date>2009-12-08T09:17:22Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with gui_download function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427913#M1410415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dont loose your time.&lt;/P&gt;&lt;P&gt;define a new iternal table with the same structure as the other.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at  old_it.
if old_it-field1 &amp;lt;&amp;gt;  ' '.  "is not initial
move-corresponding old_it to new_it.
append new_it.
clear new_it.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i dont know how to post the opposit of ( = ).  second line of code before ' '.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 09:22:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-gui-download-function-module/m-p/6427913#M1410415</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-08T09:22:56Z</dc:date>
    </item>
  </channel>
</rss>

