06-11-2012 02:54 PM
Dear Community,
while I can send a query on all objects searching in all names for a particulat name-tag, I just wonder if I can save this query to use it within any report. Under "recent queries" it is not listed and writing a query requires any object to be selected in the "Select" statement.
Any ideas?
Thanks and
Regards
Philip Peters
Solved! Go to Solution.
23-09-2014 09:32 AM
I believe that if you set under Tools => Options => Repository => Metamodel Access to expert that you see the abstract classes automatically in the protection tool query window.
18-09-2014 02:39 AM
Hi,
I need to query all objects using Generic Object in propagation tool. But, there is no option to "See Abstract Model". Do you have any other option to query all objects on propagation tool?
Thanks!
Imam
06-11-2012 03:27 PM - edited 06-11-2012 03:41 PM
Hello ppeters
By design the syntax of the query language (ERQL language) requires to name a target MetaClass
Ex:
SELECT [Org-unit] WHERE name Like "#myword#"
However you can use the 2 main abstract MetaClass ('Generic Object' and 'Generic Object System')
'Generic Object' enables to target objects stored in the user repository (ex: Adventure)
'Generic Object System' enables to target objects stored in the systemdb repository
So with one query you can target objects from most MetaClasses (Org-unit, Application, Diagram..)
Select [Generic Object] Where name Like "#myword#"
Notes: