<?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 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-using-gui-download/m-p/736768#M34970</link>
    <description>&lt;P&gt;OK, those above dont have issue for sure, what im asking about is how did you process &amp;lt;gt_excel&amp;gt;. is the missing always happended with specific user? maybe there are some special treatments or conditions you didnt think about yet. It better to debug with watch point and see what happended at the time of second header processed.&lt;/P&gt;</description>
    <pubDate>Wed, 26 Dec 2018 07:13:18 GMT</pubDate>
    <dc:creator>DoanManhQuynh</dc:creator>
    <dc:date>2018-12-26T07:13:18Z</dc:date>
    <item>
      <title>Data missing while downloading using gui_download</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-missing-while-downloading-using-gui-download/m-p/736765#M34967</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
  &lt;P&gt;My program downloads excel data using function GUI_DOWNLOAD,&lt;BR /&gt; and some user have downloaded excel that data is missing after second header line.&lt;BR /&gt;If there are 1235 line data with second header on 1181 line,&lt;BR /&gt; then for me excel is downloaded full 1235 line. &lt;BR /&gt;But for some user, excel is downloaded only 1180 line.&lt;BR /&gt;_I fixed repeated header and tested, but the problem was not solved.&lt;/P&gt;
  &lt;P&gt;_Downloaded excel have data until BT column.&lt;/P&gt;
  &lt;P&gt;Any idea what is wrong for this case? (maybe some sapgui settings?)&lt;/P&gt;
  &lt;P&gt;Thanks &amp;amp; Regards.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Dec 2018 00:03:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-missing-while-downloading-using-gui-download/m-p/736765#M34967</guid>
      <dc:creator>former_member599682</dc:creator>
      <dc:date>2018-12-26T00:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: Data missing while downloading using gui_download</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-missing-while-downloading-using-gui-download/m-p/736766#M34968</link>
      <description>&lt;P&gt;I dont think GUI_DOWNLOAD have such that small limitation. It could be issue in coding, can you provide more detail?&lt;/P&gt;</description>
      <pubDate>Wed, 26 Dec 2018 00:34:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-missing-while-downloading-using-gui-download/m-p/736766#M34968</guid>
      <dc:creator>DoanManhQuynh</dc:creator>
      <dc:date>2018-12-26T00:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: Data missing while downloading using gui_download</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-missing-while-downloading-using-gui-download/m-p/736767#M34969</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Hello Quynh Doan Manh&lt;BR /&gt;I agree about GUI_DOWNLOAD cause for me there is no problem. &lt;BR /&gt;Only for some user data is missing. &lt;BR /&gt;So.... I think there is no issue in coding.&lt;BR /&gt;Please check below.&lt;/P&gt;&lt;P&gt;Regards.&lt;BR /&gt; &lt;BR /&gt;*-------------------------------------------------------------*&lt;BR /&gt;  CALL METHOD cl_gui_frontend_services=&amp;gt;file_save_dialog&lt;BR /&gt;  EXPORTING&lt;BR /&gt;  default_extension  = 'XLS'&lt;BR /&gt;  CHANGING&lt;BR /&gt;  filename  = lv_filename&lt;BR /&gt;  path  = lv_path&lt;BR /&gt;  fullpath  = lv_fullpath&lt;BR /&gt;  EXCEPTIONS&lt;BR /&gt;  cntl_error  = 1&lt;BR /&gt;  error_no_gui  = 2&lt;BR /&gt;  not_supported_by_gui = 3&lt;BR /&gt;  OTHERS  = 4.&lt;/P&gt;&lt;P&gt;  IF lv_fullpath IS INITIAL.&lt;BR /&gt;  RETURN.&lt;BR /&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'GUI_DOWNLOAD'&lt;BR /&gt;  EXPORTING&lt;BR /&gt;  filename  = lv_fullpath&lt;BR /&gt;  filetype  = 'DAT'&lt;BR /&gt;  codepage  = '8500'&lt;BR /&gt;  TABLES&lt;BR /&gt;  data_tab  = &amp;lt;gt_excel&amp;gt;&lt;BR /&gt;  EXCEPTIONS&lt;BR /&gt;  file_write_error  = 1&lt;BR /&gt;  no_batch  = 2&lt;BR /&gt;  gui_refuse_filetransfer = 3&lt;BR /&gt;  invalid_type  = 4&lt;BR /&gt;  no_authority  = 5&lt;BR /&gt;  unknown_error  = 6&lt;BR /&gt;  header_not_allowed  = 7&lt;BR /&gt;  separator_not_allowed  = 8&lt;BR /&gt;  filesize_not_allowed  = 9&lt;BR /&gt;  header_too_long  = 10&lt;BR /&gt;  dp_error_create  = 11&lt;BR /&gt;  dp_error_send  = 12&lt;BR /&gt;  dp_error_write  = 13&lt;BR /&gt;  unknown_dp_error  = 14&lt;BR /&gt;  access_denied  = 15&lt;BR /&gt;  dp_out_of_memory  = 16&lt;BR /&gt;  disk_full  = 17&lt;BR /&gt;  dp_timeout  = 18&lt;BR /&gt;  file_not_found  = 19&lt;BR /&gt;  dataprovider_exception  = 20&lt;BR /&gt;  control_flush_error  = 21&lt;BR /&gt;  OTHERS  = 22.&lt;BR /&gt;*-------------------------------------------------------------*&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 26 Dec 2018 01:14:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-missing-while-downloading-using-gui-download/m-p/736767#M34969</guid>
      <dc:creator>former_member599682</dc:creator>
      <dc:date>2018-12-26T01:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: Data missing while downloading using gui_download</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-missing-while-downloading-using-gui-download/m-p/736768#M34970</link>
      <description>&lt;P&gt;OK, those above dont have issue for sure, what im asking about is how did you process &amp;lt;gt_excel&amp;gt;. is the missing always happended with specific user? maybe there are some special treatments or conditions you didnt think about yet. It better to debug with watch point and see what happended at the time of second header processed.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Dec 2018 07:13:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-missing-while-downloading-using-gui-download/m-p/736768#M34970</guid>
      <dc:creator>DoanManhQuynh</dc:creator>
      <dc:date>2018-12-26T07:13:18Z</dc:date>
    </item>
  </channel>
</rss>

