Book a Demo

Author Topic: Search in Project - Edit Field Chooser?  (Read 4130 times)

User4211

  • EA Novice
  • *
  • Posts: 2
  • Karma: +0/-0
    • View Profile
Search in Project - Edit Field Chooser?
« on: August 10, 2016, 05:25:11 pm »
Hi,

is it possible to add attributes to the Field Chooser in the Search in Project window?
Especially I'd like to display the priority of all elements in the result list.

Best regards

User

Helmut Ortmann

  • EA User
  • **
  • Posts: 970
  • Karma: +42/-1
    • View Profile
Re: Search in Project - Edit Field Chooser?
« Reply #1 on: August 10, 2016, 06:15:33 pm »
Hi,

you can use SQL Searches. There you can define your own columns with means of SQL. You have also the freedom to get almost everything out of the repository.
For insider information have a look in Thomas Kilian e-book InsideEA.

See:
http://sparxsystems.com/enterprise_architect_user_guide/12.1/building_models/creating_filters.html

Kind regards,

Helmut
Coaching, Training, Workshop (Addins: hoTools, Search&Replace, LineStyle)

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +397/-301
  • I'm no guru at all
    • View Profile
Re: Search in Project - Edit Field Chooser?
« Reply #2 on: August 10, 2016, 07:29:47 pm »
Elements don't have a priority per se, just  their responsibilities. In that case you can start with this SQL:

Code: [Select]
SELECT t_object.ea_guid AS CLASSGUID, t_object.Name, t_objectrequires.Priority FROM  t_object, t_objectrequires WHERE t_objectrequires.object_id = t_object.Object_ID
q.