Question CJ H · Sep 26, 2017 Given a class name, how to get all the subclasses #Caché I have a class name stored as %String,How could I get the names of all its child classes?Thanks you.
Lexi Hayden · Sep 26, 2017 select name from %Dictionary.CompiledClass where Super='yourclassnamehere'
Eduard Lebedyuk Sep 27, 2017 to Lexi Hayden This condition is insufficient for multi-level inheritance (C is a subclass of B, B is subclass of A. So C is subclass of A but Super wouldn't show this information). More on that in here.
Marc Mundt · Sep 26, 2017 Also, have a look at the query "SubclassOf" in %Dictionary.ClassDefinitionQuery:http://docs.intersystems.com/latest/csp/documatic/%25CSP.Documatic.cls?P...
select name from %Dictionary.CompiledClass where Super='yourclassnamehere'
This condition is insufficient for multi-level inheritance (C is a subclass of B, B is subclass of A. So C is subclass of A but Super wouldn't show this information). More on that in here.
Also, have a look at the query "SubclassOf" in %Dictionary.ClassDefinitionQuery:
http://docs.intersystems.com/latest/csp/documatic/%25CSP.Documatic.cls?P...