Book a Demo

Author Topic: locked in users of a model  (Read 3198 times)

ZF Germany

  • EA Novice
  • *
  • Posts: 1
  • Karma: +0/-0
    • View Profile
locked in users of a model
« on: June 07, 2013, 03:57:57 pm »
Is there a way to identify all locked in users of a model? (Program Version 10.0.1006)

Geert Bellekens

  • EA Guru
  • *****
  • Posts: 13523
  • Karma: +574/-33
  • Make EA work for YOU!
    • View Profile
    • Enterprise Architect Consultant and Value Added Reseller
Re: locked in users of a model
« Reply #1 on: June 07, 2013, 04:10:15 pm »
Do you mean all users that have a user lock in the model?
In that case, yes, Project|Security|Manage Locks

Another way would be via SQL:
Code: [Select]
select distinct u.UserLogin,u.FirstName,u.Surname from (t_seclocks l
inner join t_secuser u on l.UserID = u.UserID)

If you create a new SQL search and paste this code in it you can have a quick overview of all users with a lock any time.

Geert

RoyC

  • EA Administrator
  • EA Practitioner
  • *****
  • Posts: 1297
  • Karma: +21/-4
  • Read The Help!
    • View Profile
Re: locked in users of a model
« Reply #2 on: June 07, 2013, 04:39:16 pm »
Or is that logged in?
Best Regards, Roy