<?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 I *really* delete a class? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-really-delete-a-class/m-p/4491366#M1062997</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;Even you delete the package corresponding to it from TDEVC table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this would help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck&lt;/P&gt;&lt;P&gt;Narin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Sep 2008 05:05:42 GMT</pubDate>
    <dc:creator>narin_nandivada3</dc:creator>
    <dc:date>2008-09-15T05:05:42Z</dc:date>
    <item>
      <title>How do I *really* delete a class?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-really-delete-a-class/m-p/4491363#M1062994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone.&lt;/P&gt;&lt;P&gt;I have tried to create a persistent class in the Object Navigator using the usual creation dialogue. For some reason, the creation process of the persistent class and the corresponding agent classes stopped prematurely. So  I ended up with the actual zcl class, a base agent zcb class, but no agent zca class.&lt;/P&gt;&lt;P&gt;This sucked, so i tried to delete them, which failed:&lt;/P&gt;&lt;P&gt;- Deleting the actual class -&amp;gt; can't access class agent&lt;/P&gt;&lt;P&gt;- Deleting the base agent -&amp;gt; not allowed to access co-classes directly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I'd be glad if someone handed me the crowbar i need to get rid of these orphan classes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers &amp;amp; Thanks in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jens&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT:&lt;/P&gt;&lt;P&gt;BTW - If anyone has ever managed to get inheritance and persistent classes working together, please let me know. E.g. persistent class b inherits persisten class a, both work on the same table which has a type identifcator column to distinguish between types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jens Barthel on Sep 12, 2008 4:09 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 14:08:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-really-delete-a-class/m-p/4491363#M1062994</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-12T14:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: How do I *really* delete a class?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-really-delete-a-class/m-p/4491364#M1062995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jens,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you know what ever we create are maintained in Table TADIR.&lt;/P&gt;&lt;P&gt;so if it is not possible to delete directly then write a simple program to delete the entry in TADIR table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Delete &amp;lt;classname&amp;gt; 
           From TADIR
           where PGMID = 'R3TR' 
           and OBJECT = 'CLAS' 
           and DEVCLASS = '$TMP'  " if its local or specify the package name.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before that check the entry in the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This would do to delete.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this would help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck&lt;/P&gt;&lt;P&gt;Narin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 14:43:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-really-delete-a-class/m-p/4491364#M1062995</guid>
      <dc:creator>narin_nandivada3</dc:creator>
      <dc:date>2008-09-12T14:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: How do I *really* delete a class?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-really-delete-a-class/m-p/4491365#M1062996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Narin, thanks for the quick reply.&lt;/P&gt;&lt;P&gt;I have deleted the two troublemakers from TADIR, but they are still present in the Object Navigator. I can also still open them with the class builder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 15:01:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-really-delete-a-class/m-p/4491365#M1062996</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-12T15:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: How do I *really* delete a class?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-really-delete-a-class/m-p/4491366#M1062997</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;Even you delete the package corresponding to it from TDEVC table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this would help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck&lt;/P&gt;&lt;P&gt;Narin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 05:05:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-really-delete-a-class/m-p/4491366#M1062997</guid>
      <dc:creator>narin_nandivada3</dc:creator>
      <dc:date>2008-09-15T05:05:42Z</dc:date>
    </item>
  </channel>
</rss>

