Book a Demo

Author Topic: rtf report equivalent to ctrl-u ?  (Read 3197 times)

OpenIT Solutions

  • EA User
  • **
  • Posts: 555
  • Karma: +9/-1
    • View Profile
rtf report equivalent to ctrl-u ?
« on: September 01, 2011, 06:48:38 pm »
Hi All,

Struggling with this one :- how would i create an rtf report that lists the name of all diagrams that each element appears in - the equivalent to ctrl-u in the project browser ?

Thanks,

Jon.

Stefan Bolleininger

  • EA User
  • **
  • Posts: 308
  • Karma: +0/-0
    • View Profile
Re: rtf report equivalent to ctrl-u ?
« Reply #1 on: September 01, 2011, 10:53:56 pm »
Hi,

you can do it through model search.

In my case i do it with SQl search and

SELECT t_object.Object_ID, t_object.Alias, t_object.Note, t_object.Name, t_diagram.Diagram_ID, t_diagram.Name
FROM t_object, t_diagram, t_diagramobjects
WHERE t_object.Object_Type = 'Requirement'
AND t_object.Object_ID = t_diagramobjects.Object_ID

More Information can be found on:
http://www.sparxsystems.com/cgi-bin/yabb/YaBB.cgi?num=1313665707
Enterprise Architect in "safetycritical development" like medical device industry. My free Add-in at my Website

OpenIT Solutions

  • EA User
  • **
  • Posts: 555
  • Karma: +9/-1
    • View Profile
Re: rtf report equivalent to ctrl-u ?
« Reply #2 on: September 02, 2011, 02:12:35 am »
Hi,

Yep i know i can get the sql to bring back in ea; the issue i have is getting the sql output into an rtf report...in the correct format ie a table for each element that lists all the diagrams it appears in.

I'm guessing that some wizardy with Virtual/Model reports will be required ?

Thanks,

Jon.