Book a Demo

Author Topic: Finding all artefacts without notes  (Read 2516 times)

Denis Avdonin

  • EA Novice
  • *
  • Posts: 4
  • Karma: +0/-0
    • View Profile
Finding all artefacts without notes
« on: July 25, 2007, 07:24:14 am »
Hi All,

What is the easiest and quickest way in EA to find all artefacts in a class model, which do not have notes? I.e. I'd like to quickly find all classes, attributes, associations, etc., which have 'Notes' property empty.

Thanks,
Denis

Eve

  • EA Administrator
  • EA Guru
  • *****
  • Posts: 8110
  • Karma: +119/-20
    • View Profile
Re: Finding all artefacts without notes
« Reply #1 on: July 25, 2007, 01:18:14 pm »
This will get you some of the way.

Create a custom search using the query builder.

Add filters

Element.Notes Equals ''
Attribute.Notes Equals ''
Method.Notes Equals ''
Method.Parameter.Notes Equals ''

Each of them set to not required.  There are more things you could add to this list.  Set Element Features to Optional and Search in <Entire Model>.

Running this search will find all objects with no notes, or containing an attribute with no notes etc.

Alternatively you could write a custom sql query to actually retrieve the offending attribute.