Book a Demo

Author Topic: How to make Tagged Value Type with combined List?  (Read 3699 times)

OwenInCanada

  • EA User
  • **
  • Posts: 78
  • Karma: +0/-0
  • have the right tool for the job
    • View Profile
How to make Tagged Value Type with combined List?
« on: September 16, 2008, 01:24:19 am »
Hi all,

In extending the definition of "Requirement", I would like to create a Tagged Value Type called Reviewer. A reviewer can be an Author or a Client.

I have tried the following
In Settings/UML.../Tagged Value Types, set the "Detail" to

Type=Enum;
Type=List;
List=Authors,Clients;

, but it does not work. This definition works if "List=Authors;" is used.
Is it possible to concatenate lists in this way? (Where is the concatenation syntax described?)
Is "Clients" the correct name for the content of the list found at Setting/People/Project Clients? (How would I discover the correct name of that list?)

Thanks,

Owen

OwenInCanada

  • EA User
  • **
  • Posts: 78
  • Karma: +0/-0
  • have the right tool for the job
    • View Profile
Re: How to make Tagged Value Type with combined Li
« Reply #1 on: September 16, 2008, 01:35:44 am »
I've confirmed (experimentally) that "Authors" and "Clients" are valid variables in this context. Only the question about concatenating lists remains.

Thanks in advance,

Owen

«Midnight»

  • EA Guru
  • *****
  • Posts: 5651
  • Karma: +0/-0
  • That nice Mister Grey
    • View Profile
Re: How to make Tagged Value Type with combined Li
« Reply #2 on: September 16, 2008, 04:18:18 am »
[A guess:] Have you tried List=Authors;Clients; (i.e. change the comma to a semicolon)?
No, you can't have it!

OwenInCanada

  • EA User
  • **
  • Posts: 78
  • Karma: +0/-0
  • have the right tool for the job
    • View Profile
Re: How to make Tagged Value Type with combined Li
« Reply #3 on: September 16, 2008, 05:08:59 am »
That's a good suggestion. After which I tried the following:

List=Authors Clients;
List=Authors,Clients;
List=Authors;Clients;
List={Authors,Clients};
List=[Authors,Clients];
List=Authors&Clients;
List=Authors+Clients;

without luck.  Waiting for Sparx to jump in here  ;D

Regards,

Owen

Eve

  • EA Administrator
  • EA Guru
  • *****
  • Posts: 8110
  • Karma: +119/-20
    • View Profile
Re: How to make Tagged Value Type with combined Li
« Reply #4 on: September 16, 2008, 08:03:29 am »
I don't think concatenation is possible.