Book a Demo

Author Topic: Inclusion of Relationship Matrix in documents  (Read 4460 times)

Davide

  • EA Novice
  • *
  • Posts: 9
  • Karma: +0/-0
  • e annamo!
    • View Profile
Inclusion of Relationship Matrix in documents
« on: February 28, 2008, 10:33:33 pm »
Hi all,
        I’ve read the “Working with the RTF Generator” but I didn’t find the way to include any “Relationship Matrix” into such an automated generated RTF document.  :-/
Is it possible to include a relationship matrix into the document? If yes, how?

Thanks in advance,
Davide

enjoySparx

  • EA Novice
  • *
  • Posts: 15
  • Karma: +0/-0
  • ...We Should be pleased that if you would...
    • View Profile
Re: Inclusion of Relationship Matrix in documents
« Reply #1 on: March 03, 2008, 09:41:05 pm »
Yes, you can... you should use "document artifact" allowing you to link a rtf document to your project. The linked rtf document linked is then inserted in the global rtf project document... so you can generate with a particula template the requirements traceability matrix, link it to a document artifact and the generate the project document...
I hope it was useful...  

Graham_Moir

  • EA User
  • **
  • Posts: 749
  • Karma: +10/-15
    • View Profile
Re: Inclusion of Relationship Matrix in documents
« Reply #2 on: March 04, 2008, 12:32:05 am »
Can you explain in more detail how you have made this work for a relationship matrix ?  As far as I can see they cannot be included in the rtf documentation (7.0 818)   :-[
thanks

enjoySparx

  • EA Novice
  • *
  • Posts: 15
  • Karma: +0/-0
  • ...We Should be pleased that if you would...
    • View Profile
Re: Inclusion of Relationship Matrix in documents
« Reply #3 on: March 04, 2008, 02:04:50 am »
First step... use template below to include in your project, rtf documents... you will see the tag "model document"... this tag is used to import rtf documents linked to artifact element....This template is the same template supplied by EA called {requirements template} plus the tag model document

package >
{Pkg.Name}
{Pkg.Notes}

diagram >
{Diagram.DiagramImg}
Figure: {Diagram.Name}
< diagram

element >
{Element.Name}
{Element.Notes}
model document >
< model document
child elements >
< child elements
< element
child packages >
< child packages
< package

Second step... create in a package of your project an artifact element... you will find explanation about using the EA Help Contents...Cerca...Create Artifact Document

Third and last step... link your rtf document to artifact document... and apply template supplied!!!!!

Graham_Moir

  • EA User
  • **
  • Posts: 749
  • Karma: +10/-15
    • View Profile
Re: Inclusion of Relationship Matrix in documents
« Reply #4 on: March 04, 2008, 02:24:10 am »
Thank you, this makes sense... apart from one thing, how does this get the equivalent of what is displayed from the View/Relationship matrix menu option into an rtf document ?

enjoySparx

  • EA Novice
  • *
  • Posts: 15
  • Karma: +0/-0
  • ...We Should be pleased that if you would...
    • View Profile
Re: Inclusion of Relationship Matrix in documents
« Reply #5 on: March 04, 2008, 02:57:37 am »
I forgot to give you the template to generate the traceability matrix...

Here is...
Using the tag connector->source and connector->target arranged in a table manner this template write the traceability matrix in a table form...for the table refer to EAexample {requirements template}

By

package >
package element >
requirement >
< requirement
< package element
element >
requirement >
< requirement
connector >
source >
element >
{Element.Name}
< element
< source      
target >
element >
{Element.Name}
< element
< target
< connector
child elements >
< child elements
< element
child packages >
< child packages
< package

Graham_Moir

  • EA User
  • **
  • Posts: 749
  • Karma: +10/-15
    • View Profile
Re: Inclusion of Relationship Matrix in documents
« Reply #6 on: March 04, 2008, 09:54:43 pm »
thank you !