<?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: How do you remove an object in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-you-remove-an-object/m-p/3855321#M926770</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;clear manager.
free manager.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where "manager" is your object reference.&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>Wed, 21 May 2008 19:54:10 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2008-05-21T19:54:10Z</dc:date>
    <item>
      <title>How do you remove an object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-you-remove-an-object/m-p/3855320#M926769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have some code:&lt;/P&gt;&lt;P&gt;    CREATE OBJECT manager&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;    is_object = obj&lt;/P&gt;&lt;P&gt;    ip_no_commit = 'R'&lt;/P&gt;&lt;P&gt;    EXCEPTIONS OTHERS = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when you leave the screen the object stays on the screen. Is there a way to delete the object int he program?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 19:49:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-you-remove-an-object/m-p/3855320#M926769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T19:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: How do you remove an object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-you-remove-an-object/m-p/3855321#M926770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;clear manager.
free manager.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where "manager" is your object reference.&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>Wed, 21 May 2008 19:54:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-you-remove-an-object/m-p/3855321#M926770</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2008-05-21T19:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: How do you remove an object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-you-remove-an-object/m-p/3855322#M926771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is not possible to delete the object that you created for a class. The object is valid with in the internal session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Destructor method is not available for external use. You may use a method just to clear off variables that you use in the class. Call the method before exiting the screen, this will clear all variables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 20:02:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-you-remove-an-object/m-p/3855322#M926771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T20:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: How do you remove an object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-you-remove-an-object/m-p/3855323#M926772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just managed to figure it out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL METHOD manager-&amp;gt;unpublish.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 20:03:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-you-remove-an-object/m-p/3855323#M926772</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T20:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: How do you remove an object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-you-remove-an-object/m-p/3855324#M926773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;im having the same problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i create a dinamic ALV, with the following class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CREATE OBJECT g_custom_container&lt;/P&gt;&lt;P&gt;           EXPORTING container_name = g_container.&lt;/P&gt;&lt;P&gt;    CREATE OBJECT g_grid&lt;/P&gt;&lt;P&gt;           EXPORTING i_parent = g_custom_container.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i exit the screen and try to create a new one, the programs shows the same as before,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i try clear, and free, but is not working, I also triyed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD g_containrer-&amp;gt;unpublish.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=(&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2008 18:02:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-you-remove-an-object/m-p/3855324#M926773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-28T18:02:41Z</dc:date>
    </item>
  </channel>
</rss>

