Author Topic: Reporting on instance classifiers  (Read 4563 times)

Graham_Moir

  • EA User
  • **
  • Posts: 749
  • Karma: +10/-15
    • View Profile
Reporting on instance classifiers
« on: October 05, 2016, 12:22:34 am »
I think I may have missed something here and so I'm probably asking a dumb question.  But, how can I report on instance classifiers? 

In other words find all the instances of a classifier?   They don't seem to appear in the traceability window, relationships, insert related elements or anywhere...


qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +396/-301
  • I'm no guru at all
    • View Profile
Re: Reporting on instance classifiers
« Reply #1 on: October 05, 2016, 12:35:21 am »
AFAIK there is no ready made search. However, you can create your own search. You might start with
Code: [Select]
SELECT * from t_object  AS o1 inner join t_object AS o2 on o1.classifier_guid = o2.ea_guid

q.

Uffe

  • EA Practitioner
  • ***
  • Posts: 1859
  • Karma: +133/-14
  • Flutes: 1; Clarinets: 1; Saxes: 5 and counting
    • View Profile
Re: Reporting on instance classifiers
« Reply #2 on: October 05, 2016, 01:17:03 am »
You can find them in the traceability window. Check the options, might be switched off by default.

/U
My theories are always correct, just apply them to the right reality.

Graham_Moir

  • EA User
  • **
  • Posts: 749
  • Karma: +10/-15
    • View Profile
Re: Reporting on instance classifiers
« Reply #3 on: October 05, 2016, 02:35:55 am »

Thanks Uffe, found it exactly as you suggested. 

Useful to be able to do a search as well qwerty, thank you.