Book a Demo

Author Topic: MDG Technology: Where's the link to the toolbox?  (Read 4239 times)

gfranz

  • EA User
  • **
  • Posts: 37
  • Karma: +0/-0
    • View Profile
MDG Technology: Where's the link to the toolbox?
« on: September 05, 2012, 03:29:26 pm »
Hello,

when I create a diagram in a EAP file, then there must be also a link to the toolboxes (or to the diagram definition in the MDG Technology) of this diagram in the database. But I cannot find it in the DB schema.

I have a self generated MDG Technology and have to take care, that the link to the toolboxes will not get lost after changes to the MDG Technology.

Thanks
Guido

KP

  • EA Administrator
  • EA Expert
  • *****
  • Posts: 2919
  • Karma: +55/-3
    • View Profile
Re: MDG Technology: Where's the link to the toolbo
« Reply #1 on: September 05, 2012, 05:01:53 pm »
The fully qualified diagram type (diagram profile name plus custom diagram type name) is stored in the diagrams table in the database and EA uses this to find out from the technology the correct toolbox to display. As long as your diagram profile name and custom diagram type name in your technology don't change, you'll be OK.
The Sparx Team
[email protected]

gfranz

  • EA User
  • **
  • Posts: 37
  • Karma: +0/-0
    • View Profile
Re: MDG Technology: Where's the link to the toolbo
« Reply #2 on: September 05, 2012, 05:25:57 pm »
Thanks for the answer!

Perhaps you can also direct me to the DB table and column, where this info is stored? I cannot find it in t_diagram. I can only see column Diagram_Type with a value of Custom for diagram types from my MDG Technology.
« Last Edit: September 05, 2012, 05:32:05 pm by gfranz »

Geert Bellekens

  • EA Guru
  • *****
  • Posts: 13523
  • Karma: +574/-33
  • Make EA work for YOU!
    • View Profile
    • Enterprise Architect Consultant and Value Added Reseller
Re: MDG Technology: Where's the link to the toolbo
« Reply #3 on: September 05, 2012, 05:57:21 pm »
You have to look closer  :P

T_Diagram.StyleEx contains a lot of key/value pairs.
On my example one of them is:
"MDGDgm=Extended::User Interface;"
and another
"ProfileData=;"

these are probably the keys you are looking for.

Geert

gfranz

  • EA User
  • **
  • Posts: 37
  • Karma: +0/-0
    • View Profile
Re: MDG Technology: Where's the link to the toolbo
« Reply #4 on: September 05, 2012, 06:13:54 pm »
Thanks a lot  :P