cancel
Showing results for 
Search instead for 
Did you mean: 

Multiple Value Characteristic

Former Member
0 Kudos

Hi,

I have scenario, For Exp: Char 1 (Single Value) has values of 1,2,3. Char 2 (Mutiple value characteristic) has values A,B,C,D,E,F,G. I would like to assign values to multiple value charactistic (Char 2) based on value of Char 1. ie. if Char 1 ='3', then Char 2 values should be B, D, E. Can you please help me how to do it ?

Regards, Sparsh

Accepted Solutions (0)

Answers (2)

Answers (2)

Flavio
Active Contributor

Hi Sparsh,

Something like this should work:

$self.CHAR_2 = 'B' if $self.CHAR_1 = '3',
$self.CHAR_2 = 'D' if $self.CHAR_1 = '3',
$self.CHAR_2 = 'E' if $self.CHAR_1 = '3'.

It's a Procedure, to be allocated in the configuration profile.

Result is as follows:

and here the details concerning the dependency run:

Thank you and bye,

Flavio

Former Member
0 Kudos

Hi,

Many thanks for your reply.

I understand your solution but I dont want to assign value to multiple value characteristic, I would like to have as available choice and user selects them.

Hope you understand my requirement.

Thanks again for your time.

Regards,

Sparsh