I'm trying to work around not being able to simply add a relationship matrix to RTf documentation. I wanted to do this by specifying a template for only the relationship matrix in which you can sum all of the requirements from the model and show all elements that realize the requirement next to it (with a 2 columned table or something).
Now I could find a way to sum all elements which "Realise" some other element, but that's not what I want. I want to show it the other way around, by which elements a specific (requirement)element is "Realized by".
That way, you could iterate all (Requirement)elements in the RTF generator and just list the elements that the (requirement)element is "Realise by".
What I would like:| Requirement | Realised by |
| FR 1.0 | UseCase 1 UseCase 2 UseCase3 |
| FR 1.1 | UseCase 3 UseCase 4 |
| FR 2.0 | UseCase 1 UseCase 5 |
What I won't like:| Requirement | Realised by |
| UseCase 1 | FR 1.0 FR 2.0 |
| UseCase 2 | FR 1.0 |
| UseCase 3 | FR 1.0 FR 1.1 |
| UseCase 4 | FR 1.1 |
| UseCase 5 | FR 2.0 |
Anybody any idea if, and if so, how I could do this with build 832?