<?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 another excel question in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/another-excel-question/m-p/1010018#M78665</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 read an excel file like this:&lt;/P&gt;&lt;P&gt;  CREATE OBJECT gv_excel 'Excel.Application'.&lt;/P&gt;&lt;P&gt;  SET PROPERTY OF gv_excel 'VISIBLE' = 0.&lt;/P&gt;&lt;P&gt;  CALL METHOD OF gv_excel 'Workbooks' = gv_books.&lt;/P&gt;&lt;P&gt;  CALL METHOD OF gv_books 'Open'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      #1 = p_file&lt;/P&gt;&lt;P&gt;      #2 = 1.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;  FREE OBJECT gv_cell.&lt;/P&gt;&lt;P&gt;  FREE OBJECT gv_excel.&lt;/P&gt;&lt;P&gt;  FREE OBJECT gv_books.&lt;/P&gt;&lt;P&gt;  FREE OBJECT gv_sheet.&lt;/P&gt;&lt;P&gt;  CALL METHOD OF gv_excel 'QUIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the question is, why the excel process is not kill in the task manager?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;joseph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Jul 2005 13:30:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-07-04T13:30:25Z</dc:date>
    <item>
      <title>another excel question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/another-excel-question/m-p/1010018#M78665</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 read an excel file like this:&lt;/P&gt;&lt;P&gt;  CREATE OBJECT gv_excel 'Excel.Application'.&lt;/P&gt;&lt;P&gt;  SET PROPERTY OF gv_excel 'VISIBLE' = 0.&lt;/P&gt;&lt;P&gt;  CALL METHOD OF gv_excel 'Workbooks' = gv_books.&lt;/P&gt;&lt;P&gt;  CALL METHOD OF gv_books 'Open'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      #1 = p_file&lt;/P&gt;&lt;P&gt;      #2 = 1.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;  FREE OBJECT gv_cell.&lt;/P&gt;&lt;P&gt;  FREE OBJECT gv_excel.&lt;/P&gt;&lt;P&gt;  FREE OBJECT gv_books.&lt;/P&gt;&lt;P&gt;  FREE OBJECT gv_sheet.&lt;/P&gt;&lt;P&gt;  CALL METHOD OF gv_excel 'QUIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the question is, why the excel process is not kill in the task manager?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;joseph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jul 2005 13:30:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/another-excel-question/m-p/1010018#M78665</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-04T13:30:25Z</dc:date>
    </item>
    <item>
      <title>Re: another excel question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/another-excel-question/m-p/1010019#M78666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm guessing that it may have something to do with the fact that you are freeing the object before you are actually "quitting" it.  I think that "freeing" disconnects the pointers?  Try moving the FREE statements to after the "QUIT" method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jul 2005 13:40:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/another-excel-question/m-p/1010019#M78666</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-07-04T13:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: another excel question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/another-excel-question/m-p/1010020#M78667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jul 2005 13:46:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/another-excel-question/m-p/1010020#M78667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-04T13:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: another excel question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/another-excel-question/m-p/1010021#M78668</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 think Rich is right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;another problem could be if you've used an object to&lt;/P&gt;&lt;P&gt;save your data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL METHOD  OF H_EXCEL 'Save' = h_save.      &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so you've to free this too:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FREE OBJECT H_save.     &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jul 2005 13:46:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/another-excel-question/m-p/1010021#M78668</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2005-07-04T13:46:54Z</dc:date>
    </item>
  </channel>
</rss>

