<?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: Problem with Excel Download in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-excel-download/m-p/1501073#M232034</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cud you forward the snap shot of dump at devajyothi2000@yahoo.com&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Deva.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Aug 2006 11:30:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-23T11:30:27Z</dc:date>
    <item>
      <title>Problem with Excel Download</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-excel-download/m-p/1501072#M232033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi There,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Were upgradding to version 700 (ECC 2005) and we have a problem when we download to excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When program (customer) is run (in foreground) we get an dump when we try to download to excel using the MS_EXCEL_OLE_STANDARD_DAT Function Module. it seems to have a problem when it gets to the; call method cl_gui_frontend_services =&amp;gt; file_exist&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP kernal 700&lt;/P&gt;&lt;P&gt;SAP database 700&lt;/P&gt;&lt;P&gt;SAP Gui 640&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any thought on the problem ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 11:27:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-excel-download/m-p/1501072#M232033</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T11:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Excel Download</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-excel-download/m-p/1501073#M232034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cud you forward the snap shot of dump at devajyothi2000@yahoo.com&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Deva.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 11:30:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-excel-download/m-p/1501073#M232034</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T11:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Excel Download</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-excel-download/m-p/1501074#M232035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Conor,&lt;/P&gt;&lt;P&gt; Try Passing the parameters as specified here in the below code ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA : l_result,
         l_filename TYPE string.

  l_filename = fp_name.

  CLEAR l_result.

  CALL METHOD cl_gui_frontend_services=&amp;gt;file_exist
    EXPORTING
      file                 = l_filename
    RECEIVING
      result               = l_result
    EXCEPTIONS
      cntl_error           = 1
      error_no_gui         = 2
      wrong_parameter      = 3
      not_supported_by_gui = 4
      OTHERS               = 5.

  IF sy-subrc &amp;lt;&amp;gt; 0.
    MESSAGE s007 DISPLAY LIKE c_e.
    LEAVE LIST-PROCESSING.
  ELSEIF l_result IS INITIAL.
    MESSAGE s008 DISPLAY LIKE c_e.
    LEAVE LIST-PROCESSING.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 11:33:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-excel-download/m-p/1501074#M232035</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T11:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Excel Download</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-excel-download/m-p/1501075#M232036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santosh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I cant change the code because it's SAP standard (I would njeed to find an OSS note and there doesnt seems to be one there) the SAP Standard incluse is LSLPCF02 and the code is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; DATA: fname type string,&lt;/P&gt;&lt;P&gt;        result type abap_bool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  fname = file_name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL METHOD cl_gui_frontend_services=&amp;gt;file_exist&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      file            = fname&lt;/P&gt;&lt;P&gt;    receiving&lt;/P&gt;&lt;P&gt;      result          = result&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      others          = 0.&lt;/P&gt;&lt;P&gt;  call method cl_gui_cfw=&amp;gt;flush.&lt;/P&gt;&lt;P&gt;  IF result = abap_false.&lt;/P&gt;&lt;P&gt;    RAISE file_not_exist.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This seems to be the same, only difference is the way i_result is declared ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 12:03:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-excel-download/m-p/1501075#M232036</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T12:03:58Z</dc:date>
    </item>
  </channel>
</rss>

