Author Topic: How can I access baselines vesions  (Read 2414 times)

mohammed

  • EA User
  • **
  • Posts: 28
  • Karma: +0/-0
    • View Profile
How can I access baselines vesions
« on: May 27, 2013, 08:59:57 pm »
How can I access baselines vesions,
I want to see a list of the current baseline

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +396/-301
  • I'm no guru at all
    • View Profile
Re: How can I access baselines vesions
« Reply #1 on: May 27, 2013, 09:26:36 pm »
Project/Package Baselines

q.

Dermot

  • EA Administrator
  • EA User
  • *****
  • Posts: 591
  • Karma: +7/-0
    • View Profile
Re: How can I access baselines vesions
« Reply #2 on: May 28, 2013, 04:10:49 pm »
If you are looking for details on All the Baselines on the model you can try a Model Search with this SQL query:

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"));
« Last Edit: May 28, 2013, 04:13:07 pm by Dermot »