cancel
Showing results for 
Search instead for 
Did you mean: 

Personas - Pass values from one flavor to other

Former Member
0 Kudos


Hi experts.

We are attempting to pass values from flavor 1 to flavor 2 through variables and use them at Flavor 2.

In detail, in flavor 1 value from input box 1 is moved to a variable.

Then we switch to flavor 2 using session.utils.changeflavor(flavor ID) successfully.

Here in flavor 2, we are attempting to access the variable that was passed from flavor 1, with no success.

The question is it possible to pass values from one flavor to another?

If so, let us know the steps to be followed.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Variables you create in a script are local to that script, not just to that flavour. You can't access them in another script in the same flavour. To store values so that they are accessible globally use the session.utils.put an session.utils.get methods.

Steve.

Answers (0)