Book a Demo

Author Topic: Reporting simultaneously on separate relationships  (Read 11415 times)

dbecker

  • EA Novice
  • *
  • Posts: 2
  • Karma: +0/-0
    • View Profile
Reporting simultaneously on separate relationships
« on: October 26, 2012, 08:12:32 am »
Hello All,

I'm working on a RTF report that should list, for each use case, the activity the use case realizes, as well as the primary actor of the use case; in other words, trying to create a table like this:

   Activity ID  | Use Case ID | Use Case Name  | Primary Actor

On the Activity ID column, I have the following code:

connector >
target >
element >
     {Element.valueOf(ID)}
< element
< target
< connector

When generating the report against a package that contains one use case linked to one activity and one actor, the Activity ID column lists two IDs, the ID for the activity and the the ID of the actor.

What can I do to separate the listing of the Activity ID from the Actor Name, so they are displayed in different columns? It seems to me I would have to do some kind of filtering, but I'm not sure how.

Any help would be greatly appreciated!