<?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: Data missing while downloading the data using GUI_DOWNLOAD in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-missing-while-downloading-the-data-using-gui-download/m-p/6945632#M1487921</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use this function module &lt;STRONG&gt;MS_EXCEL_OLE_STANDARD_DAT&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Regards&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Dhirendra&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 May 2010 10:08:46 GMT</pubDate>
    <dc:creator>dhirendra_pandit</dc:creator>
    <dc:date>2010-05-25T10:08:46Z</dc:date>
    <item>
      <title>Data missing while downloading the data using GUI_DOWNLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-missing-while-downloading-the-data-using-gui-download/m-p/6945630#M1487919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm uploading the Production Order data through excel and in the transaction level it's happening fine.&lt;/P&gt;&lt;P&gt;After running the BDC I'm fetching the Production Order Number(AUFNR) and it's Status from the respective tables and downloading the data along with the Production Order Number(AUFNR) and it's Status using GUI_DOWNLOAD.  &lt;STRONG&gt;(Version is 4.6 C)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;After downloading&lt;/STRONG&gt; some of the Production Order Numbers(AUFNR) and it's Status are missing in the &lt;STRONG&gt;Excel Log sheet&lt;/STRONG&gt; . But it's very much there in the  SAP tables and also in the transaction screen level.&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;            bin_filesize            = v_bin_filesize&lt;/P&gt;&lt;P&gt;            filename                = v_name&lt;/P&gt;&lt;P&gt;            filetype                = 'ASC'&lt;/P&gt;&lt;P&gt;            write_field_separator   = 'X'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            data_tab                = it_final&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            file_write_error        = 1&lt;/P&gt;&lt;P&gt;            no_batch                = 2&lt;/P&gt;&lt;P&gt;            - - - - - - - - -  &lt;/P&gt;&lt;P&gt;            - - - - - - - - -&lt;/P&gt;&lt;P&gt;            OTHERS                  = 22.&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;P&gt;Kindly give me your suggestions regarding this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jessi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 May 2010 04:04:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-missing-while-downloading-the-data-using-gui-download/m-p/6945630#M1487919</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-25T04:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: Data missing while downloading the data using GUI_DOWNLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-missing-while-downloading-the-data-using-gui-download/m-p/6945631#M1487920</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 am not sure why it is not coming .&lt;/P&gt;&lt;P&gt;But try by uncomment the bin_filesize.&lt;/P&gt;&lt;P&gt;Because generally the size(bin_filesize) specification is for binary files .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

CALL FUNCTION 'GUI_DOWNLOAD'
EXPORTING
*bin_filesize = v_bin_filesize "Comment This
filename = v_name
filetype = 'ASC'
write_field_separator = 'X'
TABLES
data_tab = it_final.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raghava Channooru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 May 2010 05:05:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-missing-while-downloading-the-data-using-gui-download/m-p/6945631#M1487920</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-25T05:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: Data missing while downloading the data using GUI_DOWNLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-missing-while-downloading-the-data-using-gui-download/m-p/6945632#M1487921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use this function module &lt;STRONG&gt;MS_EXCEL_OLE_STANDARD_DAT&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Regards&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Dhirendra&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 May 2010 10:08:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-missing-while-downloading-the-data-using-gui-download/m-p/6945632#M1487921</guid>
      <dc:creator>dhirendra_pandit</dc:creator>
      <dc:date>2010-05-25T10:08:46Z</dc:date>
    </item>
  </channel>
</rss>

