Book a Demo

Author Topic: View a list of all baselines in one place  (Read 4290 times)

Robert Sheridan

  • EA User
  • **
  • Posts: 24
  • Karma: +0/-0
  • I love YaBB 1G - SP1!
    • View Profile
View a list of all baselines in one place
« on: May 06, 2009, 08:40:48 pm »
Baselines can currently be viewed only by selecting packages.  This means that users have to remember which packages they have created baselines in, which can be a problem if more than one person uses a project file.  As baselines use up a significant amount of space it would be useful if, as a minimum, it was possible to see a list of all baselines grouped by package.  Ideally all baselines could be managed in one place regardless of their root package.

thanks
Robert
« Last Edit: May 06, 2009, 08:43:46 pm by RS »

Dermot

  • EA Administrator
  • EA User
  • *****
  • Posts: 591
  • Karma: +7/-0
    • View Profile
Re: View a list of all baselines in one place
« Reply #1 on: May 07, 2009, 04:48:05 pm »
As a Work-around you can do a Ctrl-F Model Search using SQL:

SELECT t_object.ea_guid AS CLASSGUID, t_object.Object_Type AS CLASSTYPE, t_object.Name, t_document.DocType
FROM t_object INNER JOIN t_document ON t_object.ea_guid = t_document.ElementID
WHERE (((t_object.Object_Type)='Package') AND ((t_document.DocType)="Baseline"));

Robert Sheridan

  • EA User
  • **
  • Posts: 24
  • Karma: +0/-0
  • I love YaBB 1G - SP1!
    • View Profile
Re: View a list of all baselines in one place
« Reply #2 on: May 07, 2009, 05:51:30 pm »
Thanks, have made a note of it for when I am doing model maintenance.

Robert