Dan Abel
Dan Abel

Reputation: 107

Is there a way to execute same scenario concurrently and reuse the variables?

Image 1: Example of a scenario calling PROCESS_RECORDS:

Example of a scenario calling PROCESS_RECORDS

Image 2: PROCESS_RECORDS Scenario:

PROCESS_RECORDS Scenario

To correct, I made several copies of the variables (in Image 1). However this required me to create several copies of other variables, procedures, etc. in PROCESS_RECORDS. And now my "generic" and "reusable" scenario is no more. I thought that the variables would be created as local vars and not global vars.

Is there a way to execute same scenario concurrently and reuse the variables?

Upvotes: 0

Views: 1782

Answers (1)

gwailo59
gwailo59

Reputation: 110

First, in your main package, in the additionnal variables header of StartScen property box, you must select a project, a variable and set the value of the variable starting with # and keep the variable's name :

enter image description here

Second, in your package called by main package, you have to put your variable and choose type "Declare Variable" :

enter image description here

Upvotes: 1

Related Questions