Book a Demo

Author Topic: Sequence Diagram View  (Read 4926 times)

Tehila1

  • EA User
  • **
  • Posts: 256
  • Karma: +0/-0
    • View Profile
Sequence Diagram View
« on: July 15, 2015, 07:22:44 pm »
Hello,

In EA 11 every lifelines on sequence diagram show from which package it was dragged.

I would like to delete this text (component from packageName ).
Right click on diagram -> properties -> diagram -> uncheck the Show Namespace option , do the job for a single diagram only.

Can I set this property for all diagrams in model? how?

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +397/-301
  • I'm no guru at all
    • View Profile
Re: Sequence Diagram View
« Reply #1 on: July 15, 2015, 07:54:30 pm »
Run a SQL:
Code: [Select]
UPDATE t_diagram SET showforeign=false
q.

Tehila1

  • EA User
  • **
  • Posts: 256
  • Karma: +0/-0
    • View Profile
Re: Sequence Diagram View
« Reply #2 on: July 15, 2015, 09:24:25 pm »
Thanks for quick reply.
By mistake I posted my question under the 'Automation Interface, Add-Ins and Tools' tab.

Is it possible to do so manually?

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +397/-301
  • I'm no guru at all
    • View Profile
Re: Sequence Diagram View
« Reply #3 on: July 15, 2015, 10:38:46 pm »
No, unfortunately not. But if you pack the above in a VB script using
Code: [Select]
Repository.Execute("UPDATE...") you're ready to go.

q.

Tehila1

  • EA User
  • **
  • Posts: 256
  • Karma: +0/-0
    • View Profile
Re: Sequence Diagram View
« Reply #4 on: July 15, 2015, 10:49:36 pm »
Quote
No, unfortunately not. But if you pack the above in a VB script using
Code: [Select]
Repository.Execute("UPDATE...") you're ready to go.

q.

Thanks for letting me know this. Worth trial.